I have a list of links that I process with a function. But the problem is that it happens very slowly. How can I not wait for the function to complete? I apologize in advance, I'm new to this.
import requests
def check(link):
response = requests.get(link)
print(response.text)
list = []
for link in list:
check(link)