rnet 2.4.2__cp313-cp313t-macosx_11_0_arm64.whl → 3.0.0rc10__cp313-cp313t-macosx_11_0_arm64.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.
- rnet/__init__.py +11 -3
- rnet/__init__.pyi +1044 -799
- rnet/blocking.py +434 -1
- rnet/cookie.py +141 -1
- rnet/emulation.py +199 -0
- rnet/exceptions.py +224 -1
- rnet/header.py +319 -1
- rnet/http1.py +68 -0
- rnet/http2.py +361 -0
- rnet/rnet.cpython-313t-darwin.so +0 -0
- rnet/tls.py +428 -0
- rnet-3.0.0rc10.dist-info/METADATA +205 -0
- rnet-3.0.0rc10.dist-info/RECORD +16 -0
- {rnet-2.4.2.dist-info → rnet-3.0.0rc10.dist-info}/WHEEL +1 -1
- rnet-3.0.0rc10.dist-info/licenses/LICENSE +201 -0
- rnet/blocking.pyi +0 -616
- rnet/cookie.pyi +0 -76
- rnet/exceptions.pyi +0 -64
- rnet/header.pyi +0 -103
- rnet/impersonate.py +0 -1
- rnet/impersonate.pyi +0 -147
- rnet-2.4.2.dist-info/METADATA +0 -186
- rnet-2.4.2.dist-info/RECORD +0 -18
- rnet-2.4.2.dist-info/licenses/LICENSE +0 -674
rnet/__init__.py
CHANGED
|
@@ -3,12 +3,20 @@
|
|
|
3
3
|
from .rnet import *
|
|
4
4
|
from .rnet import __all__
|
|
5
5
|
|
|
6
|
-
from .blocking import *
|
|
7
6
|
from .cookie import *
|
|
8
7
|
from .exceptions import *
|
|
9
8
|
from .header import *
|
|
10
|
-
from .
|
|
9
|
+
from .emulation import *
|
|
10
|
+
from .http1 import *
|
|
11
|
+
from .http2 import *
|
|
12
|
+
from .tls import *
|
|
11
13
|
|
|
12
14
|
__all__ = (
|
|
13
|
-
|
|
15
|
+
header.__all__
|
|
16
|
+
+ cookie.__all__
|
|
17
|
+
+ emulation.__all__
|
|
18
|
+
+ exceptions.__all__
|
|
19
|
+
+ http1.__all__
|
|
20
|
+
+ http2.__all__
|
|
21
|
+
+ tls.__all__
|
|
14
22
|
)
|