Using an Object Instance as an FTP Callback : FTP : Network PYTHON examples


PYTHON examples » Network » FTP »

 

Using an Object Instance as an FTP Callback


 

class Writer:
    def __init__(self, file):
        self.f = open(file, "w")

    def __call__(self, data):
        self.f.write(data)
        self.f.write('n')
        print data

FILENAME = "AutoIndent.py"
writer = Writer(FILENAME)

import ftplib
ftp = ftplib.FTP('127.0.0.1', 'book', 'bookpw')
ftp.retrlines("RETR %s" % FILENAME, writer)

   
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Network
» FTP