picows 0.1.1__tar.gz

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.
@@ -0,0 +1 @@
1
+ include picows/*.pxd picows/*.pyx
picows-0.1.1/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.1
2
+ Name: picows
3
+ Version: 0.1.1
4
+ Summary: Fast websocket client and server for asyncio
5
+ Author-email: Taras Kozlov <tarasko.projects@gmail.com>
6
+ Project-URL: Homepage, https://github.com/tarasko/picows
7
+ Keywords: websocket,networking
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Framework :: AsyncIO
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: POSIX
14
+ Classifier: Operating System :: MacOS :: MacOS X
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Cython
22
+ Classifier: Programming Language :: Python :: Implementation :: CPython
23
+ Classifier: Topic :: System :: Networking
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/x-rst
26
+ Provides-Extra: dev
27
+ Requires-Dist: black; extra == "dev"
28
+ Requires-Dist: bumpver; extra == "dev"
29
+ Requires-Dist: isort; extra == "dev"
30
+ Requires-Dist: pip-tools; extra == "dev"
31
+ Requires-Dist: pytest; extra == "dev"
32
+
33
+ picows is a library for building WebSocket servers and clients
34
+ with a focus performance. picows is implemented in Cython and thus provides
35
+ unparallel performance comparing to other popular websocket libraries.
36
+
37
+
@@ -0,0 +1,5 @@
1
+ picows is a library for building WebSocket servers and clients
2
+ with a focus performance. picows is implemented in Cython and thus provides
3
+ unparallel performance comparing to other popular websocket libraries.
4
+
5
+
@@ -0,0 +1,12 @@
1
+ __version__ = "0.1.1"
2
+
3
+ from .picows import (
4
+ WSMsgType,
5
+ WSCloseCode,
6
+ WSFrame,
7
+ WSTransport,
8
+ WSListener,
9
+ ws_connect,
10
+ ws_create_server,
11
+ PICOWS_DEBUG_LL
12
+ )