Tools, FAQ, Tutorials:
Sending FTP Request with urllib.request.urlopen
How to send an FTP request with the urllib.request.urlopen() function?
✍: FYIcenter.com
If an FTP server supports anonymous access, you can
send an FTP request to retrieve a directory list,
or download a file using the urllib.request.urlopen() function:
Here is a Python example on how to get a directory list from an anonymous FTP server:
>>> import urllib >>> url='ftp://space.mit.edu/pub/' >>> r = urllib.request.urlopen(url) >>> b = r.read() >>> print(b) b'drwxrwxr-x 6 ftpuser ftpusers 512 Jun 27 2012 ASC\r\n lrwxrwxrwx 1 ftpuser ftpusers 3 Nov 20 2011 CXC -> ASC\r\n drwx------ 2 ftpuser ftpusers 512 May 2 2016 OLD\r\n ...
Here is a Python example on how to download a file from an anonymous FTP server:
>>> import urllib
>>> url='ftp://space.mit.edu/pub/cgrant/cti_temp.txt'
>>> r = urllib.request.urlopen(url)
>>> b = r.read()
>>> print(b)
>>> b' 2000.0801 -119.870
2000.0804 -119.870
2000.0857 -119.810
2000.0860 -119.700
2000.0874 -119.810
2000.0877 -119.850
2000.0930 -119.700
2000.0932 -119.630
...
⇒ 'requests' Module - HTTP for Humans
⇐ urllib.request.Request Properties and Functions
2023-10-06, ∼6520🔥, 1💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? ...