├── LICENSE ├── README.md ├── examples ├── example1 - preset.py ├── example2 - custom.py └── example3- certificate pinning.py ├── requirements.txt ├── scripts ├── build.bat └── update_shared_libraries.py ├── setup.py └── tls_client ├── __init__.py ├── __version__.py ├── cffi.py ├── cookies.py ├── dependencies ├── __init__.py ├── tls-client-32.dll ├── tls-client-64.dll ├── tls-client-amd64.so ├── tls-client-arm64.dylib ├── tls-client-arm64.so ├── tls-client-x86.dylib └── tls-client-x86.so ├── exceptions.py ├── response.py ├── sessions.py ├── settings.py └── structures.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/README.md -------------------------------------------------------------------------------- /examples/example1 - preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/examples/example1 - preset.py -------------------------------------------------------------------------------- /examples/example2 - custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/examples/example2 - custom.py -------------------------------------------------------------------------------- /examples/example3- certificate pinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/examples/example3- certificate pinning.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | typing-extensions -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/update_shared_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/scripts/update_shared_libraries.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/setup.py -------------------------------------------------------------------------------- /tls_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/__init__.py -------------------------------------------------------------------------------- /tls_client/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/__version__.py -------------------------------------------------------------------------------- /tls_client/cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/cffi.py -------------------------------------------------------------------------------- /tls_client/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/cookies.py -------------------------------------------------------------------------------- /tls_client/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-32.dll -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-64.dll -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-amd64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-amd64.so -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-arm64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-arm64.dylib -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-arm64.so -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-x86.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-x86.dylib -------------------------------------------------------------------------------- /tls_client/dependencies/tls-client-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/dependencies/tls-client-x86.so -------------------------------------------------------------------------------- /tls_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/exceptions.py -------------------------------------------------------------------------------- /tls_client/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/response.py -------------------------------------------------------------------------------- /tls_client/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/sessions.py -------------------------------------------------------------------------------- /tls_client/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/settings.py -------------------------------------------------------------------------------- /tls_client/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianREGAZ/Python-Tls-Client/HEAD/tls_client/structures.py --------------------------------------------------------------------------------