Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mxrch
GitHub Repository: mxrch/GHunt
Path: blob/master/ghunt/lib/httpx.py
252 views
1
import httpx
2
3
class AsyncClient(httpx.AsyncClient):
4
def __init__(self, *args, **kwargs):
5
super().__init__(*args, **kwargs)
6
7
def _merge_cookies(self, cookies: dict):
8
"""Don't save the cookies in the client."""
9
return cookies
10