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.
- picows-0.1.1/MANIFEST.in +1 -0
- picows-0.1.1/PKG-INFO +37 -0
- picows-0.1.1/README.rst +5 -0
- picows-0.1.1/picows/__init__.py +12 -0
- picows-0.1.1/picows/picows.c +49737 -0
- picows-0.1.1/picows/picows.pxd +140 -0
- picows-0.1.1/picows/picows.pyx +827 -0
- picows-0.1.1/picows.egg-info/PKG-INFO +37 -0
- picows-0.1.1/picows.egg-info/SOURCES.txt +13 -0
- picows-0.1.1/picows.egg-info/dependency_links.txt +1 -0
- picows-0.1.1/picows.egg-info/requires.txt +7 -0
- picows-0.1.1/picows.egg-info/top_level.txt +1 -0
- picows-0.1.1/pyproject.toml +40 -0
- picows-0.1.1/setup.cfg +4 -0
- picows-0.1.1/setup.py +27 -0
picows-0.1.1/MANIFEST.in
ADDED
|
@@ -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
|
+
|
picows-0.1.1/README.rst
ADDED