Horje
python get an online file Code Example
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




Python

Related
matrix python math Code Example matrix python math Code Example
* pattern program in python Code Example * pattern program in python Code Example
ffmpeg python Code Example ffmpeg python Code Example
remove last character from string python Code Example remove last character from string python Code Example
area of parallelogram  Code Example area of parallelogram Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8