rnet 2.4.2__cp313-cp313t-musllinux_1_2_aarch64.whl → 3.0.0rc10__cp313-cp313t-musllinux_1_2_aarch64.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 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 .impersonate import *
9
+ from .emulation import *
10
+ from .http1 import *
11
+ from .http2 import *
12
+ from .tls import *
11
13
 
12
14
  __all__ = (
13
- __all__ + header.__all__ + cookie.__all__ + impersonate.__all__ + exceptions.__all__
15
+ header.__all__
16
+ + cookie.__all__
17
+ + emulation.__all__
18
+ + exceptions.__all__
19
+ + http1.__all__
20
+ + http2.__all__
21
+ + tls.__all__
14
22
  )