9df53c69c0
High-level cross-protocol url-grabber. Using urlgrabber, data can be fetched in three basic ways: urlgrab(url) copy the file to the local filesystem urlopen(url) open the remote file and return a file object (like urllib2.urlopen) urlread(url) return the contents of the file as a string ok aja@
9 lines
301 B
Plaintext
9 lines
301 B
Plaintext
High-level cross-protocol url-grabber.
|
|
|
|
Using urlgrabber, data can be fetched in three basic ways:
|
|
|
|
urlgrab(url) copy the file to the local filesystem
|
|
urlopen(url) open the remote file and return a file object
|
|
(like urllib2.urlopen)
|
|
urlread(url) return the contents of the file as a string
|