Metadata-Version: 2.4
Name: archerfr
Version: 0.1.0
Summary: Archer - Smart browser-like HTTP client
Home-page: https://github.com/QuantumLLC/Archer
Author: QuantumLLC
License: MIT
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: httpx
Requires-Dist: tls-client
Requires-Dist: fake-useragent
Requires-Dist: undetected-chromedriver
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Archer

**Archer** is a headless, browser-like HTTP client that emulates modern browsers.  
It handles realistic TLS fingerprints, randomized headers, and session cookies.  

```python
from archer import ArcherSession

s = ArcherSession(browser="chrome", version="122")
r = s.get("https://example.com")
print(r.status_code, r.text[:200])
```

---
- `pip install .` to install locally  
- `pip install git+https://github.com/QuantumLLC/Archer`
