Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to read files using Python's ftplib without writing them. Something roughly equivalent to:

def get_page(url):
    try:
        return urllib.urlopen(url).read()
    except:
        return ""

but using FTP.

I tried:

def get_page(path):
    try:
        ftp = FTP('ftp.site.com', 'anonymous', 'passwd')
        return ftp.retrbinary('RETR '+path, open('page').read())
    except:
        return ''

but this doesn't work. The only examples in the docs involve writing files using the ftp.retrbinary('RETR README', open('README', 'wb').write) format. Is it possible to read ftp files without writing first?

share|improve this question
A terminological quibble: the answer to your question as you have phrased it is no, because "download" means "transfer from the server", not "save to disk." The urllib example you gave does download the file; it just does not save it to disk. – senderle Jun 26 '12 at 14:11
Sounds like. Is it possible to read a book without opening it? FTP is just designed to transfer files. So the ftp protocol has no actions that involve reading, running or opening a file. Another stackoverlow topic poses the same question for java. FTP sends the file as a bit stream. So it could be possible to read and handle the file during downloading. stackoverflow.com/questions/7690320/… – Erik Jun 26 '12 at 14:13
Yeah, I realized I phrased that poorly after I posted it... I'll edit now. – aensm Jun 26 '12 at 14:15

1 Answer

up vote 7 down vote accepted

Well, you have the answer right in front of you: The retrbinary method accepts as second parameter a reference to a function that is called whenever file content is retrieved from the ftp connection.

Here is a simple example:

#!/usr/bin/env python
from ftplib import FTP

def writeFunc(s):
  print "Read: " + s

ftp = FTP('ftp.kernel.org') 
ftp.login()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', writeFunc)

You should implement writeFunc so that it actually appends the data read to an internal variable, something like this, which uses a callable object:

#!/usr/bin/env python
from ftplib import FTP

class Reader:
  def __init__(self):
    self.data = ""
  def __call__(self,s):
     self.data += s

ftp = FTP('ftp.kernel.org') 
ftp.login()
r = Reader()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', r)

print r.data

Update: I realized that there is a module in the Python standard library that is meant for this kind of things, StringIO:

#!/usr/bin/env python
from ftplib import FTP
from StringIO import StringIO

ftp = FTP('ftp.kernel.org') 
ftp.login()
r = StringIO()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', r.write)

print r.getvalue()
share|improve this answer
Awesome, thanks! I didn't realize the callback could be a user defined function – aensm Jun 26 '12 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.