Metadata-Version: 2.4
Name: tls_sessions
Version: 1.0.6
Summary: TLS fingerprinted HTTP client replacement for requests.Session
Author-email: Md Josif Khan <josifkhn@gmail.com>
License: MIT
Keywords: tls,tls client,tls_sessions,tls session,tls http client,http2,tls-request,tls-session
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# tls_sessions

A TLS-fingerprinted HTTP client.

## Features
- Custom JA3
- Akamai HTTP/2 fingerprint
- TLS signature algorithms
- Drop-in `requests.Session` replacement

## Usage

```python
from tls_session import Session

session = Session(fingerprint="chrome_144")
r = session.get("https://example.com")
print(r.text)
