Tagged Questions
2
votes
1answer
458 views
How use openurl & multiprocessing get URL different data in the same time?
This loop help get some text data from web service:
while True:
u = urllib2.urlopen('http://url/%d.csv' %inputd)
f=open('/folder/%s.csv' $inputd,'a')
csvread = csv.reader(u)
csvwrite ...