rnet 3.0.0rc11__cp314-cp314t-manylinux_2_34_armv7l.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.
Potentially problematic release.
This version of rnet might be problematic. Click here for more details.
- rnet/__init__.py +24 -0
- rnet/__init__.pyi +1583 -0
- rnet/blocking.py +434 -0
- rnet/cookie.py +141 -0
- rnet/dns.py +82 -0
- rnet/emulation.py +200 -0
- rnet/exceptions.py +224 -0
- rnet/header.py +319 -0
- rnet/http1.py +68 -0
- rnet/http2.py +361 -0
- rnet/py.typed +0 -0
- rnet/rnet.cpython-314t-arm-linux-gnueabihf.so +0 -0
- rnet/tls.py +428 -0
- rnet-3.0.0rc11.dist-info/METADATA +205 -0
- rnet-3.0.0rc11.dist-info/RECORD +17 -0
- rnet-3.0.0rc11.dist-info/WHEEL +4 -0
- rnet-3.0.0rc11.dist-info/licenses/LICENSE +201 -0
rnet/__init__.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# rnet/__init__.py
|
|
2
|
+
|
|
3
|
+
from .rnet import *
|
|
4
|
+
from .rnet import __all__
|
|
5
|
+
|
|
6
|
+
from .cookie import *
|
|
7
|
+
from .exceptions import *
|
|
8
|
+
from .header import *
|
|
9
|
+
from .emulation import *
|
|
10
|
+
from .http1 import *
|
|
11
|
+
from .http2 import *
|
|
12
|
+
from .tls import *
|
|
13
|
+
from .dns import *
|
|
14
|
+
|
|
15
|
+
__all__ = (
|
|
16
|
+
header.__all__
|
|
17
|
+
+ cookie.__all__
|
|
18
|
+
+ emulation.__all__
|
|
19
|
+
+ exceptions.__all__
|
|
20
|
+
+ http1.__all__
|
|
21
|
+
+ http2.__all__
|
|
22
|
+
+ tls.__all__
|
|
23
|
+
+ dns.__all__
|
|
24
|
+
) # type: ignore
|