473,385 Members | 1,813 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

ftplib callbacks


I would like to reimplement ftplib "nlst" using ftplib.dir (ftp server
doesn't support nlst) so I'm trying to guess how to use ftp callbacks.
Any help is appreciated.
tia!

============
#!/usr/bin/python

# nlst vs list

import pprint
pp = pprint.PrettyPrinter(indent=4)

import ftplib

def myfilter(line):
return line

ftp = ftplib.FTP("localhost")
ftp.login("mpapec", "island88")
#print ftp.retrlines("LIST")
dir = ftp.dir("", myfilter)
print dir
--
Matija
Jul 18 '05 #1
2 2930
Matija Papec wrote:
I would like to reimplement ftplib "nlst" using ftplib.dir (ftp server
doesn't support nlst) so I'm trying to guess how to use ftp callbacks.
Any help is appreciated.
tia!

============
#!/usr/bin/python

# nlst vs list

import pprint
pp = pprint.PrettyPrinter(indent=4)

import ftplib

def myfilter(line):
return line

ftp = ftplib.FTP("localhost")
ftp.login("mpapec", "island88")
#print ftp.retrlines("LIST")
dir = ftp.dir("", myfilter)
print dir

The callback is called each time the FTP client softwrae has something
to deal with. Try (untested):

lines = []

def myfilter(line):
global lines
lines.append(line)

with the remainder of your code unchanged. The lines list will then
contain a list of all lines.

The problem with your current callback is that its return value is
ignored by the FTP module that calls it.

regards
Steve
--
http://www.holdenweb.com
http://pydish.holdenweb.com
Holden Web LLC +1 800 494 3119
Jul 18 '05 #2
X-Ftn-To: Steve Holden

Steve Holden <st***@holdenweb.com> wrote:
The callback is called each time the FTP client softwrae has something
to deal with. Try (untested):

lines = []

def myfilter(line):
global lines
lines.append(line)

with the remainder of your code unchanged. The lines list will then
contain a list of all lines.
Tnx, I did

def nlst2(self, *args):
cmd = 'LIST'
for arg in args:
cmd = cmd + (' ' + arg)
files = []
self.retrlines(cmd, files.append)
return files

and now I just need to parse it. :)
The problem with your current callback is that its return value is
ignored by the FTP module that calls it.


Yes, unfortunately even "def retrlines" returns something uninteresting.

--
Matija
Jul 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: python | last post by:
Hi: I want to write a procedure to automatically upload some files for me, but I'm getting stuck. Before I write my own gruesome put() function, I wanted to check if there is an easier way. ...
5
by: Kevin Ollivier | last post by:
Hi all, I've come across a problem that has me stumped, and I thought I'd send a message to the gurus to see if this makes sense to anyone else. =) Basically, I'm trying to upload a series of...
0
by: Joshua Burvill | last post by:
Hello, I am trying to print something to a print server using the following function but I get errors, does anyone have any pointers? Rgds, Josh Traceback (most recent call last): File...
2
by: siggy2 | last post by:
Hi, I'm using Python 2.3.4 (#53, May 25 2004, 21:17:02) on win32 I've noticed a strange (= not deterministic) behaviour of ftplib.py: sometimes (not always) it fails (after a variable number of...
2
by: Harlin Seritt | last post by:
Using ftplib from Python I am trying to get all files in a particular directory using ftplib and then send those same files to another ftp server. I have tried using commands like 'get *' and 'mget...
1
by: Леонов Алексей | last post by:
Hello! I use this code: from ftplib import FTP def handleDownload(block): file.write(block) print "." file = open('1', 'wb') ftp = FTP('ftp.utk.ru')
1
by: Merrigan | last post by:
Hi All, I have written a little script to upload some files to an ftp folder. The problem is as follows : I wrote the script on my windows laptop, and I want to run it from mylinux server....
6
by: half.italian | last post by:
Hi all, I'm using ftplib to transfer large files to remote sites. The process seems to work perfectly with small files, but when the file gets to large ~20GB I begin getting errors that...
1
by: Jon Bowlas | last post by:
Hi All, I've written a little method to connect to an ftpserver which works well, however when I send a file using this ftp connection oddly I _sometimes_ get returned an EOFError from...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.