I am trying to take multiple URL's separated by comma and put them in list in python.
I tried:
url = request.GET.get('url').split(',') #accept url seperated by comma
data= []
data.append(requests.get(url).content)
The above code did not work for obvious reasons.
How can I accept multiple url separated by comma using request.GET
urlis your list.