Skip to content

Commit 472a33d

Browse files
author
Florian
committed
updates
1 parent 75d0dc0 commit 472a33d

File tree

11 files changed

+31
-10
lines changed

11 files changed

+31
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Example 1 - Preset:
1414
import tls_client
1515

1616
# You can also use the following as `client_identifier`:
17-
# Chrome --> chrome_103, chrome_104, chrome_105, chrome_106, chrome_107
17+
# Chrome --> chrome_103, chrome_104, chrome_105, chrome_106, chrome_107, chrome_108
1818
# Firefox --> firefox_102, firefox_104
1919
# Opera --> opera_89, opera_90
2020
# Safari --> safari_15_3, safari_15_6_1, safari_16_0

examples/example1 - preset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import tls_client
22

33
# You can also use the following as `client_identifier`:
4-
# Chrome --> chrome_103, chrome_104, chrome_105, chrome_106, chrome_107
4+
# Chrome --> chrome_103, chrome_104, chrome_105, chrome_106, chrome_107, chrome_108
55
# Firefox --> firefox_102, firefox_104
66
# Opera --> opera_89, opera_90
77
# Safari --> safari_15_3, safari_15_6_1, safari_16_0
88
# iOS --> safari_ios_15_5, safari_ios_15_6, safari_ios_16_0
99
# iPadOS --> safari_ios_15_6
1010

1111
session = tls_client.Session(
12-
client_identifier="chrome_107",
12+
client_identifier="chrome_108",
1313
random_tls_extension_order=True
1414
)
1515

tls_client/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
__title__ = "tls_client"
88
__description__ = "Advanced Python HTTP Client."
9-
__version__ = "0.1.5"
9+
__version__ = "0.1.6"
1010
__author__ = "Florian Zager"
1111
__license__ = "MIT"

tls_client/cffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if platform == 'darwin':
88
file_ext = '-arm64.dylib' if machine() == "arm64" else '-x86.dylib'
99
elif platform in ('win32', 'cygwin'):
10-
file_ext = '.dll'
10+
file_ext = '-64.dll' if 8 == ctypes.sizeof(ctypes.c_voidp) else '-32.dll'
1111
else:
1212
file_ext = '-x86.so' if "x86" in machine() else '-amd64.so'
1313

13 MB
Binary file not shown.
Binary file not shown.
87.9 KB
Binary file not shown.
55.3 KB
Binary file not shown.
90.9 KB
Binary file not shown.
84 KB
Binary file not shown.

0 commit comments

Comments
 (0)