notify-tls-client 0.1.6__py3-none-any.whl → 2.0.0__py3-none-any.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.
Files changed (32) hide show
  1. notify_tls_client/__init__.py +2 -2
  2. notify_tls_client/config/__init__.py +18 -0
  3. notify_tls_client/config/client_config.py +76 -0
  4. notify_tls_client/config/client_configuration.py +237 -0
  5. notify_tls_client/config/recovery_config.py +66 -0
  6. notify_tls_client/config/rotation_config.py +56 -0
  7. notify_tls_client/core/client/__init__.py +1 -6
  8. notify_tls_client/core/client/decorators.py +200 -90
  9. notify_tls_client/core/client_identifiers_manager.py +44 -0
  10. notify_tls_client/core/notifytlsclient.py +271 -146
  11. notify_tls_client/core/proxiesmanager/__init__.py +1 -1
  12. notify_tls_client/core/proxiesmanager/proxiesmanager.py +79 -67
  13. notify_tls_client/core/proxiesmanager/proxiesmanagerloader.py +33 -33
  14. notify_tls_client/tls_client/__init__.py +14 -14
  15. notify_tls_client/tls_client/__version__.py +10 -10
  16. notify_tls_client/tls_client/cffi.py +40 -62
  17. notify_tls_client/tls_client/cookies.py +456 -456
  18. notify_tls_client/tls_client/dependencies/{tls-client-xgo-1.11.0-darwin-arm64.dylib → tls-client-darwin-amd64-1.12.0.dylib} +0 -0
  19. notify_tls_client/tls_client/dependencies/tls-client-linux-arm64-1.12.0.so +0 -0
  20. notify_tls_client/tls_client/dependencies/{tls-client-xgo-1.11.0-linux-amd64.so → tls-client-linux-ubuntu-amd64-1.12.0.so} +0 -0
  21. notify_tls_client/tls_client/dependencies/{tls-client-windows-1.11.0-64.dll → tls-client-windows-64-1.12.0.dll} +0 -0
  22. notify_tls_client/tls_client/exceptions.py +2 -2
  23. notify_tls_client/tls_client/response.py +84 -78
  24. notify_tls_client/tls_client/sessions.py +524 -513
  25. notify_tls_client/tls_client/settings.py +69 -69
  26. notify_tls_client/tls_client/structures.py +74 -74
  27. notify_tls_client-2.0.0.dist-info/METADATA +38 -0
  28. notify_tls_client-2.0.0.dist-info/RECORD +32 -0
  29. {notify_tls_client-0.1.6.dist-info → notify_tls_client-2.0.0.dist-info}/WHEEL +1 -1
  30. notify_tls_client-0.1.6.dist-info/METADATA +0 -16
  31. notify_tls_client-0.1.6.dist-info/RECORD +0 -25
  32. {notify_tls_client-0.1.6.dist-info → notify_tls_client-2.0.0.dist-info}/top_level.txt +0 -0
@@ -1,69 +1,69 @@
1
- from typing_extensions import Literal, TypeAlias
2
-
3
- ClientIdentifiers: TypeAlias = Literal[
4
- # Chrome
5
- "chrome_103",
6
- "chrome_104",
7
- "chrome_105",
8
- "chrome_106",
9
- "chrome_107",
10
- "chrome_108",
11
- "chrome_109",
12
- "chrome_110",
13
- "chrome_111",
14
- "chrome_112",
15
- "chrome_116_PSK",
16
- "chrome_116_PSK_PQ",
17
- "chrome_117",
18
- "chrome_120",
19
- "chrome_124",
20
- "chrome_131",
21
- "chrome_131_PSK",
22
- "chrome_133",
23
- "chrome_133_PSK",
24
- # Safari
25
- "safari_15_6_1",
26
- "safari_16_0",
27
- # iOS (Safari)
28
- "safari_ios_15_5",
29
- "safari_ios_15_6",
30
- "safari_ios_16_0",
31
- # iPadOS (Safari)
32
- "safari_ios_15_6",
33
- # FireFox
34
- "firefox_102",
35
- "firefox_104",
36
- "firefox_105",
37
- "firefox_106",
38
- "firefox_108",
39
- "firefox_110",
40
- "firefox_117",
41
- "firefox_120",
42
- # Opera
43
- "opera_89",
44
- "opera_90",
45
- "opera_91",
46
- # OkHttp4
47
- "okhttp4_android_7",
48
- "okhttp4_android_8",
49
- "okhttp4_android_9",
50
- "okhttp4_android_10",
51
- "okhttp4_android_11",
52
- "okhttp4_android_12",
53
- "okhttp4_android_13",
54
- # Custom
55
- "zalando_ios_mobile",
56
- "zalando_android_mobile",
57
- "nike_ios_mobile",
58
- "nike_android_mobile",
59
- "mms_ios",
60
- "mms_ios_2",
61
- "mms_ios_3",
62
- "mesh_ios",
63
- "mesh_ios_2",
64
- "mesh_android",
65
- "mesh_android_2",
66
- "confirmed_ios",
67
- "confirmed_android",
68
- "confirmed_android_2",
69
- ]
1
+ from typing_extensions import Literal, TypeAlias
2
+
3
+ ClientIdentifiers: TypeAlias = Literal[
4
+ # Chrome
5
+ "chrome_103",
6
+ "chrome_104",
7
+ "chrome_105",
8
+ "chrome_106",
9
+ "chrome_107",
10
+ "chrome_108",
11
+ "chrome_109",
12
+ "chrome_110",
13
+ "chrome_111",
14
+ "chrome_112",
15
+ "chrome_116_PSK",
16
+ "chrome_116_PSK_PQ",
17
+ "chrome_117",
18
+ "chrome_120",
19
+ "chrome_124",
20
+ "chrome_131",
21
+ "chrome_131_PSK",
22
+ "chrome_133",
23
+ "chrome_133_PSK",
24
+ # Safari
25
+ "safari_15_6_1",
26
+ "safari_16_0",
27
+ # iOS (Safari)
28
+ "safari_ios_15_5",
29
+ "safari_ios_15_6",
30
+ "safari_ios_16_0",
31
+ # iPadOS (Safari)
32
+ "safari_ios_15_6",
33
+ # FireFox
34
+ "firefox_102",
35
+ "firefox_104",
36
+ "firefox_105",
37
+ "firefox_106",
38
+ "firefox_108",
39
+ "firefox_110",
40
+ "firefox_117",
41
+ "firefox_120",
42
+ # Opera
43
+ "opera_89",
44
+ "opera_90",
45
+ "opera_91",
46
+ # OkHttp4
47
+ "okhttp4_android_7",
48
+ "okhttp4_android_8",
49
+ "okhttp4_android_9",
50
+ "okhttp4_android_10",
51
+ "okhttp4_android_11",
52
+ "okhttp4_android_12",
53
+ "okhttp4_android_13",
54
+ # Custom
55
+ "zalando_ios_mobile",
56
+ "zalando_android_mobile",
57
+ "nike_ios_mobile",
58
+ "nike_android_mobile",
59
+ "mms_ios",
60
+ "mms_ios_2",
61
+ "mms_ios_3",
62
+ "mesh_ios",
63
+ "mesh_ios_2",
64
+ "mesh_android",
65
+ "mesh_android_2",
66
+ "confirmed_ios",
67
+ "confirmed_android",
68
+ "confirmed_android_2",
69
+ ]
@@ -1,74 +1,74 @@
1
- from typing import MutableMapping, Mapping
2
- from collections import OrderedDict
3
-
4
-
5
- class CaseInsensitiveDict(MutableMapping):
6
- """Origin: requests library (https://github.com/psf/requests)
7
-
8
- A case-insensitive ``dict``-like object.
9
-
10
- Implements all methods and operations of
11
- ``MutableMapping`` as well as dict's ``copy``. Also
12
- provides ``lower_items``.
13
-
14
- All keys are expected to be strings. The structure remembers the
15
- case of the last key to be set, and ``iter(instance)``,
16
- ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()``
17
- will contain case-sensitive keys. However, querying and contains
18
- testing is case insensitive::
19
-
20
- cid = CaseInsensitiveDict()
21
- cid['Accept'] = 'application/json'
22
- cid['aCCEPT'] == 'application/json' # True
23
- list(cid) == ['Accept'] # True
24
-
25
- For example, ``headers['content-encoding']`` will return the
26
- value of a ``'Content-Encoding'`` response header, regardless
27
- of how the header name was originally stored.
28
-
29
- If the constructor, ``.update``, or equality comparison
30
- operations are given keys that have equal ``.lower()``s, the
31
- behavior is undefined.
32
- """
33
-
34
- def __init__(self, data=None, **kwargs):
35
- self._store = OrderedDict()
36
- if data is None:
37
- data = {}
38
- self.update(data, **kwargs)
39
-
40
- def __setitem__(self, key, value):
41
- # Use the lowercased key for lookups, but store the actual
42
- # key alongside the value.
43
- self._store[key.lower()] = (key, value)
44
-
45
- def __getitem__(self, key):
46
- return self._store[key.lower()][1]
47
-
48
- def __delitem__(self, key):
49
- del self._store[key.lower()]
50
-
51
- def __iter__(self):
52
- return (casedkey for casedkey, mappedvalue in self._store.values())
53
-
54
- def __len__(self):
55
- return len(self._store)
56
-
57
- def lower_items(self):
58
- """Like iteritems(), but with all lowercase keys."""
59
- return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items())
60
-
61
- def __eq__(self, other):
62
- if isinstance(other, Mapping):
63
- other = CaseInsensitiveDict(other)
64
- else:
65
- return NotImplemented
66
- # Compare insensitively
67
- return dict(self.lower_items()) == dict(other.lower_items())
68
-
69
- # Copy is required
70
- def copy(self):
71
- return CaseInsensitiveDict(self._store.values())
72
-
73
- def __repr__(self):
74
- return str(dict(self.items()))
1
+ from typing import MutableMapping, Mapping
2
+ from collections import OrderedDict
3
+
4
+
5
+ class CaseInsensitiveDict(MutableMapping):
6
+ """Origin: requests library (https://github.com/psf/requests)
7
+
8
+ A case-insensitive ``dict``-like object.
9
+
10
+ Implements all methods and operations of
11
+ ``MutableMapping`` as well as dict's ``copy``. Also
12
+ provides ``lower_items``.
13
+
14
+ All keys are expected to be strings. The structure remembers the
15
+ case of the last key to be set, and ``iter(instance)``,
16
+ ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()``
17
+ will contain case-sensitive keys. However, querying and contains
18
+ testing is case insensitive::
19
+
20
+ cid = CaseInsensitiveDict()
21
+ cid['Accept'] = 'application/json'
22
+ cid['aCCEPT'] == 'application/json' # True
23
+ list(cid) == ['Accept'] # True
24
+
25
+ For example, ``headers['content-encoding']`` will return the
26
+ value of a ``'Content-Encoding'`` response header, regardless
27
+ of how the header name was originally stored.
28
+
29
+ If the constructor, ``.update``, or equality comparison
30
+ operations are given keys that have equal ``.lower()``s, the
31
+ behavior is undefined.
32
+ """
33
+
34
+ def __init__(self, data=None, **kwargs):
35
+ self._store = OrderedDict()
36
+ if data is None:
37
+ data = {}
38
+ self.update(data, **kwargs)
39
+
40
+ def __setitem__(self, key, value):
41
+ # Use the lowercased key for lookups, but store the actual
42
+ # key alongside the value.
43
+ self._store[key.lower()] = (key, value)
44
+
45
+ def __getitem__(self, key):
46
+ return self._store[key.lower()][1]
47
+
48
+ def __delitem__(self, key):
49
+ del self._store[key.lower()]
50
+
51
+ def __iter__(self):
52
+ return (casedkey for casedkey, mappedvalue in self._store.values())
53
+
54
+ def __len__(self):
55
+ return len(self._store)
56
+
57
+ def lower_items(self):
58
+ """Like iteritems(), but with all lowercase keys."""
59
+ return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items())
60
+
61
+ def __eq__(self, other):
62
+ if isinstance(other, Mapping):
63
+ other = CaseInsensitiveDict(other)
64
+ else:
65
+ return NotImplemented
66
+ # Compare insensitively
67
+ return dict(self.lower_items()) == dict(other.lower_items())
68
+
69
+ # Copy is required
70
+ def copy(self):
71
+ return CaseInsensitiveDict(self._store.values())
72
+
73
+ def __repr__(self):
74
+ return str(dict(self.items()))
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: notify-tls-client
3
+ Version: 2.0.0
4
+ Summary: Cliente HTTP avançado com TLS fingerprinting, rotação de proxies e recuperação automática para web scraping resiliente
5
+ Author-email: Jeferson Albara <jeferson.albara@example.com>
6
+ Maintainer-email: Jeferson Albara <jeferson.albara@example.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/jefersonAlbara/notify-tls-client
9
+ Project-URL: Documentation, https://github.com/jefersonAlbara/notify-tls-client#readme
10
+ Project-URL: Repository, https://github.com/jefersonAlbara/notify-tls-client
11
+ Project-URL: Issues, https://github.com/jefersonAlbara/notify-tls-client/issues
12
+ Project-URL: Changelog, https://github.com/jefersonAlbara/notify-tls-client/blob/main/CHANGELOG.md
13
+ Keywords: tls-client,http-client,web-scraping,proxy-rotation,tls-fingerprinting,browser-emulation,http2,http3,requests,automation
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Internet :: WWW/HTTP
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Internet :: Proxy Servers
23
+ Classifier: Operating System :: OS Independent
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.12
26
+ Description-Content-Type: text/markdown
27
+ Requires-Dist: dataclasses-json>=0.6.0
28
+ Requires-Dist: typing-extensions>=4.8.0
29
+ Requires-Dist: orjson>=3.9.0
30
+ Provides-Extra: dev
31
+ Requires-Dist: pytest>=7.4.0; extra == "dev"
32
+ Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
33
+ Requires-Dist: black>=23.0.0; extra == "dev"
34
+ Requires-Dist: mypy>=1.5.0; extra == "dev"
35
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
36
+
37
+ # MY TLS Client
38
+ Pacote python privado com modificações na classe 'tls client'
@@ -0,0 +1,32 @@
1
+ notify_tls_client/__init__.py,sha256=APA8wxvkGYZiVMMbTWGo7prB3iKE-OzUajd0bfc8PwE,84
2
+ notify_tls_client/config/__init__.py,sha256=2xsw7M2E8-ncpIDySYcgH500xAnYyO3qy3PRXkP2inQ,495
3
+ notify_tls_client/config/client_config.py,sha256=Fwg6LS1zP8XFRPbTxNj2svCqeWh2GJcqrq7hnpQtYRQ,2837
4
+ notify_tls_client/config/client_configuration.py,sha256=Zl71lxZSKU7oVJwnHPSYV9uufk2IgFtHW3u9deqo5HU,9103
5
+ notify_tls_client/config/recovery_config.py,sha256=L5a_jMUfdUMdFBXeLPz9RAU0oXz-Ma4ZuzG7B-h7hDs,2876
6
+ notify_tls_client/config/rotation_config.py,sha256=Av_K6BzgPknFYZXxe9WmDra8VGI9JEpDJSm0dDs8QqM,2089
7
+ notify_tls_client/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ notify_tls_client/core/client_identifiers_manager.py,sha256=ko4Y5IVMxNTRgk4e6jiJF_kcMjzej9rRt7BJtX-OMyg,1346
9
+ notify_tls_client/core/notifytlsclient.py,sha256=Mj6myXtzc_M52oOj_-cj4NcSx2WOuDIfg396CtOLmDo,12598
10
+ notify_tls_client/core/client/__init__.py,sha256=VKjpq02hC-r9ER6mbfkwG6W2ybv_jND9d9bidte0CjU,51
11
+ notify_tls_client/core/client/decorators.py,sha256=GjGUl5eE5KZGB7Bc6XRFgmJ1Xjz6gNBXxOH8jldCAl8,8554
12
+ notify_tls_client/core/proxiesmanager/__init__.py,sha256=emF4vnZvSfb9zlHkt9dDdTcGwkfs1DADi7XVw_DxsWs,105
13
+ notify_tls_client/core/proxiesmanager/proxiesmanager.py,sha256=V-X5dWskGHUjrX-hpl9E4L6pv53LBg1M0giEbWmG6JE,2286
14
+ notify_tls_client/core/proxiesmanager/proxiesmanagerloader.py,sha256=7xr3SVdRnr95KWOdk15iehOCXG2huA-rY1j9VIe30YQ,1179
15
+ notify_tls_client/tls_client/__init__.py,sha256=sThiIAzA650rfBlqZ_xalTjgTysUsjKua5ODnqyvhUE,669
16
+ notify_tls_client/tls_client/__version__.py,sha256=32ZZ-ufGC9Yo6oPk5a1xig8YKJ2ZkRXnXoVqiqO0ptg,395
17
+ notify_tls_client/tls_client/cffi.py,sha256=pedwBcQOwJvI66yp5GpyNU6zoqrQhTv3ocM1-1PtUm0,1291
18
+ notify_tls_client/tls_client/cookies.py,sha256=1fIOnFDMWMeXuAjQybSrUJXnyjhP-_jJ68AxBUZYgYU,15609
19
+ notify_tls_client/tls_client/exceptions.py,sha256=xIoFb5H3Suk7XssQ-yw3I1DBkPLqnDXsiAe2MMp1qNQ,80
20
+ notify_tls_client/tls_client/response.py,sha256=7j4iJa59Hcdw5ZWPvaxgLTvC_AWrch9hwMbrK4HNJjo,2618
21
+ notify_tls_client/tls_client/sessions.py,sha256=1xeUDR9H42wS900mCzkpu4At7Lx1O07QGoDuThbLG0M,19233
22
+ notify_tls_client/tls_client/settings.py,sha256=x_2Vrph-QebbCjkxmnX8UPd5oYYU4ClqPOpfoqelno4,1485
23
+ notify_tls_client/tls_client/structures.py,sha256=md-tJmo8X5bad0KrMUTVN8jxUIvui7NiBxaf10bLULU,2517
24
+ notify_tls_client/tls_client/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ notify_tls_client/tls_client/dependencies/tls-client-darwin-amd64-1.12.0.dylib,sha256=Nwmntg61goKoAqLPHUE0ZMgXOovv6oYqkcyDXbmhxbU,10815576
26
+ notify_tls_client/tls_client/dependencies/tls-client-linux-arm64-1.12.0.so,sha256=fQvdtCiRRS228WrFUE_ucq4OPC4Z7QU4_KI4B3Gf97Y,14404088
27
+ notify_tls_client/tls_client/dependencies/tls-client-linux-ubuntu-amd64-1.12.0.so,sha256=UTvtZa93fWLWaSBINC_Cu8mNoLwsVdcQbQZsdQnZrJM,15210112
28
+ notify_tls_client/tls_client/dependencies/tls-client-windows-64-1.12.0.dll,sha256=uk80UEGW8WepYMglh1Yo6VSrBSNDwon-OyFqE_1bWmM,24849278
29
+ notify_tls_client-2.0.0.dist-info/METADATA,sha256=O_m_lTWjraTbcqLAHr1GxwtNwOzHWnb6T1InhT5qiUA,1941
30
+ notify_tls_client-2.0.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
31
+ notify_tls_client-2.0.0.dist-info/top_level.txt,sha256=fq9YA0cFdpCuUO7cdMFN7oxm1zDfZm_m1KPXehUqA5o,18
32
+ notify_tls_client-2.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: notify_tls_client
3
- Version: 0.1.6
4
- Summary: Sem descrição
5
- Author: Jeferson Albara
6
- Author-email: Naruto Uzumaki <naruto_uzumaki@gmail.com>
7
- License: MIT
8
- Project-URL: Homepage, https://github.com/jefersonAlbara/notify-tls-client
9
- Requires-Python: >=3.12
10
- Description-Content-Type: text/markdown
11
- Requires-Dist: dataclasses_json
12
- Requires-Dist: typing_extensions
13
- Dynamic: author
14
-
15
- # MY TLS Client
16
- Pacote python privado com modificações na classe 'tls client'
@@ -1,25 +0,0 @@
1
- notify_tls_client/__init__.py,sha256=WgKh42BBwUJBBLTL305Xkwx_SNcqup0ETtu4gp9_2to,82
2
- notify_tls_client/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- notify_tls_client/core/notifytlsclient.py,sha256=TZjWYsS9sA1Xfe9oc97p9YQvkf6VSD-eOr8baXk-2HI,5297
4
- notify_tls_client/core/client/__init__.py,sha256=rGSk3IjQTPEcIa4irH2BsQFjlFDGgiQPYwS8xlUsdTE,205
5
- notify_tls_client/core/client/decorators.py,sha256=5D683F_eX_l4DZ7geHvofNJIv-6DfsI8vZ1c_-zqgMI,2414
6
- notify_tls_client/core/proxiesmanager/__init__.py,sha256=CD-_jRDtKr7U_7LNP435BnXTCBUQ-wiodd7kHIXdwHM,104
7
- notify_tls_client/core/proxiesmanager/proxiesmanager.py,sha256=5bVO9a6J_72W61t1gsZ4xagUGCX8vG5r8Qgv6xGt7Z4,1771
8
- notify_tls_client/core/proxiesmanager/proxiesmanagerloader.py,sha256=4KMGGRGLl1_pZMH3kEY4sTnyMQi6J4luB_Vr6ekV1nI,1146
9
- notify_tls_client/tls_client/__init__.py,sha256=ORP-QdcnLxOEs42G3yPr6txUxryz7jUOA_AtHMafpf8,655
10
- notify_tls_client/tls_client/__version__.py,sha256=EWf5bTOobWzd-Lq4tqaGYEt22CR2D2Hs_sLbZoJNPXk,385
11
- notify_tls_client/tls_client/cffi.py,sha256=bHZezE-gJCTqplJae-_qZsDm77ymLAeNbP6hNekTWrQ,1805
12
- notify_tls_client/tls_client/cookies.py,sha256=5ujSFL6V8bDMCH8Mow6qoj5dP5GjfMJTd8_jWottvpM,15153
13
- notify_tls_client/tls_client/exceptions.py,sha256=edxP4P0NVOK-1r0zNRAMt4yh97LArXz8i6SU9oTSYQY,78
14
- notify_tls_client/tls_client/response.py,sha256=I0yjEfmrKH89rqRUr7W5hxTkqNpULzs0YXEFCJ91qv8,2377
15
- notify_tls_client/tls_client/sessions.py,sha256=b0LRB25h-ZJtPjUOyjgPqGXA4cfJCqSH0wzp2NrjWJU,18320
16
- notify_tls_client/tls_client/settings.py,sha256=UtXvvkhBrrM41OyQtikYh1KBms42FIKQIxzKRJWaWGA,1416
17
- notify_tls_client/tls_client/structures.py,sha256=zb1wflxxWoKFqe8NMT2qEvIh7RA-kN459ZcNhW8p_Uo,2443
18
- notify_tls_client/tls_client/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- notify_tls_client/tls_client/dependencies/tls-client-windows-1.11.0-64.dll,sha256=mEOLbVw06uWPqdh4WLsu4R-U1DjUENHFiM6wyz1nSTY,25889369
20
- notify_tls_client/tls_client/dependencies/tls-client-xgo-1.11.0-darwin-arm64.dylib,sha256=MAsdrzWjuvZ-VcMaDph_-obpukI_3GR-6jBuKudOq68,10664722
21
- notify_tls_client/tls_client/dependencies/tls-client-xgo-1.11.0-linux-amd64.so,sha256=iLTVk_yA061dZP9GRlF51cD1KKC3_IZc1oMCFd1WPyI,15935104
22
- notify_tls_client-0.1.6.dist-info/METADATA,sha256=vC67N3ICdu7CDw9qo5Uc565TWEOyiJwPQIW4kaCqb58,480
23
- notify_tls_client-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
- notify_tls_client-0.1.6.dist-info/top_level.txt,sha256=fq9YA0cFdpCuUO7cdMFN7oxm1zDfZm_m1KPXehUqA5o,18
25
- notify_tls_client-0.1.6.dist-info/RECORD,,