deedy5 / primp

🪞PRIMP (Python Requests IMPersonate). The fastest python HTTP client that can impersonate web browsers
MIT License
90 stars 7 forks source link

abilitiy to modify client once it's been initialized #49

Open heroofmystory opened 1 week ago

heroofmystory commented 1 week ago
session = primp.Client(impersonate="chrome_131")

session.headers = {
    "accept": "application/json"
}

session.cookies = {
    "cookie": "cookie"
}

session.proxies = {
    "http": "",
    "https": ""
}