python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
can connect to URL with curl but not with requests (i.e. requests ignoring my CA bundle?)
I am able to connect to a certain URL with cURL, after I installed the corresponding SSL certificates:
$ export MY_URL=https://www.infosubvenciones.es/bdnstrans/GE/es/convocatoria/616783
$ curl -vvvv ...
astrojuanlu
Votes: 0
Answers: 1
Multiple client request using httpx Runtime Error: Cannot send a request, as the client has been closed
I have the below piece of code
async def get_data(uuid):
async with sema, httpx.AsyncClient(
base_url=udi_data_url, params=params
) as udi_client:
udi_result = udi_client.get(f...
jhon.smith
Votes: 0
Answers: 0
how limit request per second with httpx [Python 3.6]
My project consists of consuming an api that is built on top of the aws lambda service. Technically, the leader who built the api tells me that there is no fixed request limit since the service is ela...

Joan
Votes: 0
Answers: 1