1
vote
2answers
386 views

Error with urlopen: new-line character seen in unquoted field

I am using urllib.urlopen with Python 2.7 to read csv files located on an external webserver: # Try & Except statements removed for clarity import urllib import csv url = ... csv_file = ...
2
votes
1answer
470 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 ...