I know when you want to send HTTP requests in Python 3 , you use the following code:
import requests
requests.get(url = "http://example.com")
and the program waits for the website to send back it's status / source code. But I'm trying to write a program that sends HTTP requests but doesn't wait for the website to reply.How can I do that?
EDIT I tried to use TCP and UDP but neither works since I get the status of the website after the packets are being sent.