notify-tls-client 0.1.4__py3-none-any.whl → 0.1.5__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.
- notify_tls_client/tls_client/cffi.py +13 -1
- notify_tls_client/tls_client/dependencies/{tls-client-64.dll → tls-client-windows-1.11.0-64.dll} +0 -0
- notify_tls_client/tls_client/dependencies/{tls-client-arm64.dylib → tls-client-xgo-1.11.0-darwin-arm64.dylib} +0 -0
- notify_tls_client/tls_client/dependencies/{tls-client-32.dll → tls-client-xgo-1.11.0-linux-amd64.so} +0 -0
- {notify_tls_client-0.1.4.dist-info → notify_tls_client-0.1.5.dist-info}/METADATA +3 -1
- {notify_tls_client-0.1.4.dist-info → notify_tls_client-0.1.5.dist-info}/RECORD +8 -10
- notify_tls_client/tls_client/dependencies/tls-client-x86.dylib +0 -0
- notify_tls_client/tls_client/dependencies/tls-client-x86.so +0 -0
- {notify_tls_client-0.1.4.dist-info → notify_tls_client-0.1.5.dist-info}/WHEEL +0 -0
- {notify_tls_client-0.1.4.dist-info → notify_tls_client-0.1.5.dist-info}/top_level.txt +0 -0
|
@@ -17,7 +17,19 @@ else:
|
|
|
17
17
|
file_ext = '-amd64.so'
|
|
18
18
|
|
|
19
19
|
root_dir = os.path.abspath(os.path.dirname(__file__))
|
|
20
|
-
|
|
20
|
+
lib_dir = os.path.join(root_dir, "dependencies")
|
|
21
|
+
lib_path = None
|
|
22
|
+
# Encontre o primeiro arquivo que termina com o file_ext
|
|
23
|
+
for filename in os.listdir(lib_dir):
|
|
24
|
+
if filename.endswith(file_ext):
|
|
25
|
+
lib_path = os.path.join(lib_dir, filename)
|
|
26
|
+
break
|
|
27
|
+
|
|
28
|
+
if not lib_path:
|
|
29
|
+
raise FileNotFoundError(f"No shared library found in {lib_dir} with extension {file_ext}")
|
|
30
|
+
|
|
31
|
+
root_dir = os.path.abspath(os.path.dirname(__file__))
|
|
32
|
+
library = ctypes.cdll.LoadLibrary(lib_path)
|
|
21
33
|
|
|
22
34
|
# extract the exposed request function from the shared package
|
|
23
35
|
request = library.request
|
notify_tls_client/tls_client/dependencies/{tls-client-64.dll → tls-client-windows-1.11.0-64.dll}
RENAMED
|
Binary file
|
|
Binary file
|
notify_tls_client/tls_client/dependencies/{tls-client-32.dll → tls-client-xgo-1.11.0-linux-amd64.so}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: notify_tls_client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Sem descrição
|
|
5
|
+
Author: Jeferson Albara
|
|
5
6
|
Author-email: Naruto Uzumaki <naruto_uzumaki@gmail.com>
|
|
6
7
|
License: MIT
|
|
7
8
|
Project-URL: Homepage, https://github.com/jefersonAlbara/notify-tls-client
|
|
@@ -9,6 +10,7 @@ Requires-Python: >=3.12
|
|
|
9
10
|
Description-Content-Type: text/markdown
|
|
10
11
|
Requires-Dist: dataclasses_json
|
|
11
12
|
Requires-Dist: typing_extensions
|
|
13
|
+
Dynamic: author
|
|
12
14
|
|
|
13
15
|
# MY TLS Client
|
|
14
16
|
Pacote python privado com modificações na classe 'tls client'
|
|
@@ -8,7 +8,7 @@ notify_tls_client/core/proxiesmanager/proxiesmanager.py,sha256=5bVO9a6J_72W61t1g
|
|
|
8
8
|
notify_tls_client/core/proxiesmanager/proxiesmanagerloader.py,sha256=4KMGGRGLl1_pZMH3kEY4sTnyMQi6J4luB_Vr6ekV1nI,1146
|
|
9
9
|
notify_tls_client/tls_client/__init__.py,sha256=ORP-QdcnLxOEs42G3yPr6txUxryz7jUOA_AtHMafpf8,655
|
|
10
10
|
notify_tls_client/tls_client/__version__.py,sha256=EWf5bTOobWzd-Lq4tqaGYEt22CR2D2Hs_sLbZoJNPXk,385
|
|
11
|
-
notify_tls_client/tls_client/cffi.py,sha256=
|
|
11
|
+
notify_tls_client/tls_client/cffi.py,sha256=znDcM9xosXClYjTCYVO1Ug79Qzti98iCJJFB64XBkeQ,1384
|
|
12
12
|
notify_tls_client/tls_client/cookies.py,sha256=5ujSFL6V8bDMCH8Mow6qoj5dP5GjfMJTd8_jWottvpM,15153
|
|
13
13
|
notify_tls_client/tls_client/exceptions.py,sha256=edxP4P0NVOK-1r0zNRAMt4yh97LArXz8i6SU9oTSYQY,78
|
|
14
14
|
notify_tls_client/tls_client/response.py,sha256=I0yjEfmrKH89rqRUr7W5hxTkqNpULzs0YXEFCJ91qv8,2377
|
|
@@ -16,12 +16,10 @@ notify_tls_client/tls_client/sessions.py,sha256=b0LRB25h-ZJtPjUOyjgPqGXA4cfJCqSH
|
|
|
16
16
|
notify_tls_client/tls_client/settings.py,sha256=UtXvvkhBrrM41OyQtikYh1KBms42FIKQIxzKRJWaWGA,1416
|
|
17
17
|
notify_tls_client/tls_client/structures.py,sha256=zb1wflxxWoKFqe8NMT2qEvIh7RA-kN459ZcNhW8p_Uo,2443
|
|
18
18
|
notify_tls_client/tls_client/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
notify_tls_client/tls_client/dependencies/tls-client-
|
|
20
|
-
notify_tls_client/tls_client/dependencies/tls-client-
|
|
21
|
-
notify_tls_client/tls_client/dependencies/tls-client-
|
|
22
|
-
notify_tls_client
|
|
23
|
-
notify_tls_client
|
|
24
|
-
notify_tls_client-0.1.
|
|
25
|
-
notify_tls_client-0.1.
|
|
26
|
-
notify_tls_client-0.1.4.dist-info/top_level.txt,sha256=fq9YA0cFdpCuUO7cdMFN7oxm1zDfZm_m1KPXehUqA5o,18
|
|
27
|
-
notify_tls_client-0.1.4.dist-info/RECORD,,
|
|
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.5.dist-info/METADATA,sha256=cf-1lSj-vdC7C-Fcv7vjSfqqTrIu6YX0yNZ-FM7Q3bE,480
|
|
23
|
+
notify_tls_client-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
24
|
+
notify_tls_client-0.1.5.dist-info/top_level.txt,sha256=fq9YA0cFdpCuUO7cdMFN7oxm1zDfZm_m1KPXehUqA5o,18
|
|
25
|
+
notify_tls_client-0.1.5.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|