Metadata-Version: 2.4
Name: tls_sessions
Version: 1.1.2
Summary: A high-performance HTTP/2 session with `JA3` injection, replacement for `requests` module
Author-email: Md Josif Khan <josifkhn@gmail.com>
License-Expression: MIT
Keywords: tls,tls client,tls_sessions,tls session,tls http client,http2,tls-request,tls-session
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
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` replacement

## Usage

`pip install tls_sessions` 

```python
from tls_session import Session

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