import antibotaio_tls_client
from antibotaio_tls_client import Client
async def main():
await antibotaio_tls_client.update_if_necessary()
session = antibotaio_tls_client.Session(
client=Client.CHROME_120,
debug=True,
antibotaio_api_key="YOUR_API_KEY",
antibotaio_hosts=["footlocker.pl"]
)
res = await session.get(
"https://www.example.com/",
headers={
"key1": "value1",
},
proxy="http://user:password@host:port"
)
print(res.text)