I need to make an outgoing ftp request to get some small files. There are 6 files, each less than 10K, and I only need to extract them once every couple of hours.
When I try to do this using urllib2.urlopen (" ftp://xxx.xxx.xxx "), I get an AttributeError exception: the 'module' object does not have the 'Ftp_port' attribute.
I have read the documentation and see that you are allowed to make http and https requests from the application, unfortunately, my application must consume ftp data, does this mean that I can’t use the application at all? I sincerely hope not.
So has anyone else found a way to make ftp requests, possibly with a paid account? And if not what other people have chosen? azure or ec2 allow outgoing ftp requests?
source
share