urllib2 FTP Weirdness

Steven D'Aprano steve+comp.lang.python at pearwood.info
Wed Jan 23 19:41:44 EST 2013


Nick Cash wrote:

> Python 2.7.3 on linux
> 
> This has me fairly stumped. It looks like
>     urllib2.urlopen("ftp://some.ftp.site/path").read()
> will either immediately return '' or hang indefinitely. But
>     response = urllib2.urlopen("ftp://some.ftp.site/path")
>     response.read()
> works fine and returns what is expected. This is only an issue with
> urllib2, vanilla urllib doesn't do it.
> 
> The site I first noticed it on is private, but I can reproduce it with
> "ftp://ftp2.census.gov/".

Then why not give that in your example, to make running your code
easier? :-)

I cannot reproduce the problem:


py> import urllib2
py> x = urllib2.urlopen("ftp://ftp2.census.gov/").read()
py> len(x)
5550


Works fine for me using Python 2.7.2 on Linux. I cannot see how the two
snippets you give could possibly be different. If you are using a proxy,
what happens if you bypass it?

If you can reproduce this at will, with and without proxy, with multiple
sites, then I suppose it is conceivable that it could be some sort of bug.
But I wouldn't bet on it.



-- 
Steven




More information about the Python-list mailing list