Hi i am new to python development.
i have to make multiple push in very short amount of time(seconds preferably).
currently i am using request package's post method to post the data into an API . But , by default request method waits for the response from the API.
requests.post(url, json=data, headers=headers)
Is there any other way that i can post the data into API in asynchronous way ?
Thank you