Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python get an online file

import urllib2  # the lib that handles the url stuff

data = urllib2.urlopen(target_url) # it's a file like object and works just like a file
for line in data: # files are iterable
    print line
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #online #file
ADD COMMENT
Topic
Name
4+7 =