bisocket 0.0.5a4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bisocket/__init__.py +28 -0
- bisocket/cython/c_main.c +50857 -0
- bisocket/cython/c_main.pyx +889 -0
- bisocket/main.py +906 -0
- bisocket-0.0.5a4.dist-info/METADATA +234 -0
- bisocket-0.0.5a4.dist-info/RECORD +9 -0
- bisocket-0.0.5a4.dist-info/WHEEL +5 -0
- bisocket-0.0.5a4.dist-info/licenses/LICENSE +21 -0
- bisocket-0.0.5a4.dist-info/top_level.txt +1 -0
bisocket/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# # Import modules from subpackages
|
|
2
|
+
# try:
|
|
3
|
+
# from .cython import c_main as main
|
|
4
|
+
# except:
|
|
5
|
+
# from . import main
|
|
6
|
+
|
|
7
|
+
# try:
|
|
8
|
+
# from .cython.c_main import (
|
|
9
|
+
# Client, Server, Message, ServerRequest, server_handler_example,
|
|
10
|
+
# BiClient, BiServer, BiMessage, BiServerRequest
|
|
11
|
+
# )
|
|
12
|
+
# except:
|
|
13
|
+
# from .main import (
|
|
14
|
+
# Client, Server, Message, ServerRequest, server_handler_example,
|
|
15
|
+
# BiClient, BiServer, BiMessage, BiServerRequest
|
|
16
|
+
# )
|
|
17
|
+
|
|
18
|
+
from . import main
|
|
19
|
+
|
|
20
|
+
from .main import (
|
|
21
|
+
Client, Server, Message, ServerRequest, server_handler_example,
|
|
22
|
+
BiClient, BiServer, BiMessage, BiServerRequest
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
# Define the public API
|
|
26
|
+
__all__ = [
|
|
27
|
+
'main',
|
|
28
|
+
]
|