I am new to Python, I want to understand if the Http request is Synchronous or Async? do i need to implement callbacks ?
I am using urllib2
module and below is the syntax:
content = urllib2.urlopen(urlnew).read()
At my server there are more than 30,000 records and for each one there will be an http call and the response received will be stored.
Any help appreciated.