Slightly reorganise the project structure

This commit is contained in:
Lonami Exo
2017-06-09 16:13:39 +02:00
parent ba5bfa105f
commit 7adb4f09d6
16 changed files with 25 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
"""
Several extensions Python is missing, such as a proper class to handle a TCP
communication with support for cancelling the operation, and an utility class
to work with arbitrary binary data in a more comfortable way (writing ints,
strings, bytes, etc.)
"""
from .binary_writer import BinaryWriter
from .binary_reader import BinaryReader
from .tcp_client import TcpClient