[New Release] PyFTPD - an FTP server with GUI and CLI versions

2016-11-01 Thread Demosthenes Koptsis
Hello, i have just released the brand new FTP server based on pyftpdlib, named PyFTPD. You can run it from CLI with PyFTPD-cli.py or if you like GUIs run the PyFTPD.py It is written on PyQT4 and Python 2.7.12 More at https://github.com/demosthenesk/PyFTPD Regards, Dim -- https

Re: I get an error when I used urllib2.urlopen() to open a remote file in a ftp server

2011-01-06 Thread Ariel
You are right, Thanks. On Thu, Jan 6, 2011 at 12:55 PM, Ian Kelly wrote: > On Thu, Jan 6, 2011 at 10:26 AM, Ariel wrote: > > Hi everybody: > > > > I get an error when I used urllib2.urlopen() to open a remote file in a > ftp > > server, My code is the fol

Re: I get an error when I used urllib2.urlopen() to open a remote file in a ftp server

2011-01-06 Thread Ian Kelly
On Thu, Jan 6, 2011 at 10:26 AM, Ariel wrote: > Hi everybody: > > I get an error when I used urllib2.urlopen() to open a remote file in a ftp > server, My code is the following: > >>>> file = 'ftp:/192.168.250.14:2180/RTVE/VIDEOS/Thisisit.wmv' Looks to me l

I get an error when I used urllib2.urlopen() to open a remote file in a ftp server

2011-01-06 Thread Ariel
Hi everybody: I get an error when I used urllib2.urlopen() to open a remote file in a ftp server, My code is the following: >>> file = 'ftp:/192.168.250.14:2180/RTVE/VIDEOS/Thisisit.wmv' >>> mydata = urllib2.urlopen(file) Traceback (most recent call last): File &quo

RE: list from FTP server to a text file

2011-01-06 Thread Ahmed, Shakir
-Original Message- From: python-list-bounces+shahmed=sfwmd@python.org [mailto:python-list-bounces+shahmed=sfwmd@python.org] On Behalf Of Dan M Sent: Thursday, January 06, 2011 11:06 AM To: python-list@python.org Subject: Re: list from FTP server to a text file On Thu, 06 Jan

Re: list from FTP server to a text file

2011-01-06 Thread Dan M
On Thu, 06 Jan 2011 10:51:42 -0500, Ahmed, Shakir wrote: > Hi, > > I am trying to create a list in a txt file from an ftp server. The > following code is retrieving the list of the files but could not able to > write in a text file. Any help is highly appreciat

list from FTP server to a text file

2011-01-06 Thread Ahmed, Shakir
Hi, I am trying to create a list in a txt file from an ftp server. The following code is retrieving the list of the files but could not able to write in a text file. Any help is highly appreciated. Thanks import os import time from ftplib import FTP ftp = FTP

Re: Delete files from FTP Server older then 7 days. Using ftputil and ftplib.

2010-05-19 Thread Giampaolo Rodolà
2010/5/19 pilgrim773 : > Hello I am new to Python programming. I need a write a script which > will delete files from a FTP server after they have reached a certain > age, like 7 days for example. I have prepared this code below, but I > get an error message: > The system canno

Re: Delete files from FTP Server older then 7 days. Using ftputil and ftplib.

2010-05-19 Thread MRAB
pilgrim773 wrote: Hello I am new to Python programming. I need a write a script which will delete files from a FTP server after they have reached a certain age, like 7 days for example. I have prepared this code below, but I get an error message: The system cannot find the path specified

Delete files from FTP Server older then 7 days. Using ftputil and ftplib.

2010-05-19 Thread pilgrim773
Hello I am new to Python programming. I need a write a script which will delete files from a FTP server after they have reached a certain age, like 7 days for example. I have prepared this code below, but I get an error message: The system cannot find the path specified: '/test123/*.*'

Re: Trouble with ftplib uploading to an FTP server

2010-02-25 Thread Sky Larking
On Feb 25, 1:10 am, Dennis Lee Bieber wrote: > On Wed, 24 Feb 2010 17:21:58 -0800 (PST), Sky Larking > declaimed the following in > gmane.comp.python.general: > > > For instance I just ran the script and os.rename() renamed it to: > > > TestMachine.local @ 02-24-2010 2020.txt > > > in that .txt f

Re: Trouble with ftplib uploading to an FTP server

2010-02-24 Thread Sky Larking
On Feb 24, 3:56 pm, MRAB wrote: > Sky Larking wrote: > > This bit of code is designed to get the external IP address and > > hostname of a client , write it locally to a file, then upload to an > > FTP server. It works locally( one can see the IP number and hostname >

Re: Trouble with ftplib uploading to an FTP server

2010-02-24 Thread MRAB
Sky Larking wrote: This bit of code is designed to get the external IP address and hostname of a client , write it locally to a file, then upload to an FTP server. It works locally( one can see the IP number and hostname with a time stamp in /Users/admin/Documents) , but when the file is opened

Trouble with ftplib uploading to an FTP server

2010-02-24 Thread Sky Larking
This bit of code is designed to get the external IP address and hostname of a client , write it locally to a file, then upload to an FTP server. It works locally( one can see the IP number and hostname with a time stamp in /Users/admin/Documents) , but when the file is opened on the server after

ANN: Python FTP Server library (pyftpdlib) 0.5.2 released

2009-09-13 Thread Giampaolo Rodola'
Hi, I'm pleased to announce release 0.5.2 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib === About === Python FTP server library provides a high-level portable interface to easily write asynchronous FTP servers with Python. pyftpdlib is currently the most com

Re: Data uploading to a ftp server

2009-04-16 Thread Aahz
In article , Ahmed, Shakir wrote: > >I am getting following error while uploading data to a ftp server. Any >help is highly appreciated. > >ftp.storbinary("stor erp.shp", ffile2,8192) > File "C:\Python24\lib\ftplib.py", line 419, in storbinary >

Data uploading to a ftp server

2009-04-16 Thread Ahmed, Shakir
I am getting following error while uploading data to a ftp server. Any help is highly appreciated. ftp.storbinary("stor erp.shp", ffile2,8192) File "C:\Python24\lib\ftplib.py", line 419, in storbinary conn.sendall(buf) File "", line 1, in sendall error

[ANN] Python FTP Server library (pyftpdlib) 0.5.1 released

2009-01-21 Thread Giampaolo Rodola'
Hi, I'm pleased to announce release 0.5.1 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib === About === Python FTP server library provides an high-level portable interface to easily write asynchronous FTP servers with Python. Based on asyncore framework pyftpdl

ANN: Python FTP Server library (pyftpdlib) 0.5.0 released

2008-09-20 Thread Giampaolo Rodola'
Hi, I'm pleased to announce release 0.5.0 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib/ === About === Python FTP server library provides an high-level portable interface to easily write asynchronous FTP servers with Python. Based on asyncore framework pyft

ANN: Python FTP Server library (pyftpdlib) 0.4.0 released

2008-05-16 Thread Giampaolo Rodola'
Hi, I'm pleased to announce release 0.4.0 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib/ === About === Python FTP server library provides an high-level portable interface to easily write asynchronous FTP servers with Python. Based on asyncore framework pyftpdl

Re: Python FTP server library 0.3.0 released

2008-01-17 Thread Salvatore
Giampaolo Rodola' a écrit : > Hi, > I'm pleased to announce release 0.3.0 of Python FTP Server library > (pyftpdlib). > http://code.google.com/p/pyftpdlib/ - Giampaolo Rodola' < g.rodola [at] gmail [dot] com > Greatissimo :-) It would be nice if this could be

Python FTP server library 0.3.0 released

2008-01-17 Thread Giampaolo Rodola'
Hi, I'm pleased to announce release 0.3.0 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib/ === About === Python FTP server library provides an high-level portable interface to easily write asynchronous FTP servers with Python. Based on asyncore framework pyft

ANN: Python FTP Server library (pyftpdlib) 0.2.0 released

2007-09-17 Thread Giampaolo Rodolà
Hi, I'm pleased to announce release 0.2.0 of Python FTP Server library (pyftpdlib). http://code.google.com/p/pyftpdlib/ === About === Python FTP server library provides an high-level portable interface to easily write asynchronous FTP servers with Python. Based on asyncore framework pyft

Re: Python FTP server down

2007-03-04 Thread Christian Joergensen
John Nagle <[EMAIL PROTECTED]> writes: > "ftp://ftp.python.org/pub/"; is returning "Connection Refused" today. True. > I need FTP access to download onto a colocated server. Is HTTP firewalled? If you have SSH-access, you could just do the HTTP download at your workstation and scp/sftp it to t

Python FTP server down

2007-03-03 Thread John Nagle
"ftp://ftp.python.org/pub/"; is returning "Connection Refused" today. Does that ever work? I need FTP access to download onto a colocated server. John Nagle -- http://mail.python.org/mailman/listinfo/python-list

Re: GIS Shape file upload to FTP server

2007-03-01 Thread Jean-Paul Calderone
h is working fine to upload files to the ftp >server but the problem is it is reducing the actual size after >transferring. I need to upload a GIS Shape file to the ftp server but >want to keep the same size and format. Any idea or help is highly >appreciated. > > > [snip] >

GIS Shape file upload to FTP server

2007-03-01 Thread Ahmed, Shakir
HI Group, As I am very new in python field so this question might be very silly to you but if I get any help is highly appreciated. Problem: I wrote a python script which is working fine to upload files to the ftp server but the problem is it is reducing the actual size after transferring. I

GIS Shape file upload FTP server

2007-03-01 Thread Ahmed, Shakir
HI Group, As I am very new in python field so this question might be very silly but If I get any help that is highly appreciated. Problem: I have a python script which is working fine to upload files to the ftp server but the problem is it is reducing the actual size after

Re: wanted: ftp server class

2006-03-06 Thread Jean-Paul Calderone
On Mon, 06 Mar 2006 16:37:21 GMT, John Pote <[EMAIL PROTECTED]> wrote: >Hi everyone, > >I have a 'client' with a built in ftp client that I wish to use to access a >server via the internet. But I do not want to use a standard disk accessing >ftp server as I need to d

wanted: ftp server class

2006-03-06 Thread John Pote
Hi everyone, I have a 'client' with a built in ftp client that I wish to use to access a server via the internet. But I do not want to use a standard disk accessing ftp server as I need to do my own processing between the filesystem and the ftp TCP/IP port. Can someone suggest the s

Avoiding FTP server timeout for files based on sockets (long posting)

2006-02-08 Thread Stefan Schwarzer
ts from it: read_from_this_file = host.file("remote_file", "r") write_to_this_file = host.file("another_remote_file", "wb") In the background, each call of the FTPHost.file method opens another connection to the FTP server by using the login data from the FTPHost

Re: Existing FTP server code?

2005-12-21 Thread vglass
Depending on which language and protocol you want to use consider the following SFTP (FTP over SSH) http://www.jscape.com/sftp/ (Java classes) http://www.jscape.com/sshfactorydotnet/ (.NET classes) FTPS (FTP over SSL) http://www.jscape.com/sftp/ (Java classes) http://www.jscape.com/sftpdotnet

Re: Existing FTP server code?

2005-12-20 Thread gene tani
Mateusz Soltysek wrote: > [EMAIL PROTECTED] wrote: > > Hi, I'm writing a program that needs to upload files to a server > > (probably using FTP), that also needs to be secured and be able to > > setup username/password programmatically. > > > > I wonder if there are already well written base code

Re: Existing FTP server code?

2005-12-20 Thread Mateusz Sołtysek
[EMAIL PROTECTED] wrote: > Hi, I'm writing a program that needs to upload files to a server > (probably using FTP), that also needs to be secured and be able to > setup username/password programmatically. > > I wonder if there are already well written base code I can work on. > > The reason I cho

Existing FTP server code?

2005-12-19 Thread [EMAIL PROTECTED]
Hi, I'm writing a program that needs to upload files to a server (probably using FTP), that also needs to be secured and be able to setup username/password programmatically. I wonder if there are already well written base code I can work on. The reason I choose FTP is because it is well known/sup

Re: Existing FTP server code?

2005-12-19 Thread Murtog (sent by Nabble.com)
So you want to upload some files to a FTP Server. This is pretty easy with Python. Give a look at this page: http://docs.python.org/lib/module-ftplib.html Look for the examples, they should help you a lot. cheers! =] Sent from the Python - python-list forum at Nabble.com: Re: Existing FTP

Re: Put a file on an ftp server over ssl

2005-05-11 Thread Rick Holbert
Have a look at Putty's pscp and PySCP... http://www.chiark.greenend.org.uk/~sgtatham/putty/ http://py.vaults.ca/apyllo.py/990075885.195097684.69935243 Rick Lars wrote: > Daniel, > > Why don't you just use the 'sftp' command line program, it's available > for all unixes and I bet you can find a

Re: Put a file on an ftp server over ssl

2005-05-11 Thread Lars
Daniel, Why don't you just use the 'sftp' command line program, it's available for all unixes and I bet you can find a build for windows to? Then you could just do an os.system(..) and be done with it. Cheers! Lars -- http://mail.python.org/mailman/listinfo/python-list

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
Sorry Jp, I was using the google client, and it does not automagically put reply marks on the message one is replying too. I'm just a bit frustrated that such a seemingly simple task to get so complicated very easily. I do appreciate your input! Just wish someone had already done it and shared

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Jp Calderone
On 10 May 2005 11:32:39 -0700, Daniel Santa Cruz <[EMAIL PROTECTED]> wrote: >I looked briefly at this option, but it seems to me that I would have >to learn a whole architecture just to put a file on an ftp server. >Seems like a bit much, don't you think? (In the absence of

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
I looked briefly at this option, but it seems to me that I would have to learn a whole architecture just to put a file on an ftp server. Seems like a bit much, don't you think? Daniel -- http://mail.python.org/mailman/listinfo/python-list

Re: Put a file on an ftp server over ssl

2005-05-10 Thread Jp Calderone
On 10 May 2005 09:55:32 -0700, Daniel Santa Cruz <[EMAIL PROTECTED]> wrote: >Hello all! > >I have been troubled for the past couple of days trying to write a >simple script that sends a file to an ftp server. It used to be the >easiest thing in the world, but now the server

Put a file on an ftp server over ssl

2005-05-10 Thread Daniel Santa Cruz
Hello all! I have been troubled for the past couple of days trying to write a simple script that sends a file to an ftp server. It used to be the easiest thing in the world, but now the server has changed to a ftps (ftp over ssl) server. All of the sudden, the world has come to a crawling stop

Re: Downloading all files older than 3 hours from a ftp-server.

2005-03-16 Thread Fredrik Lundh
Christos TZOTZIOY Georgiou wrote: > ISTR seeing a parsedate (or similar) for ftp sites by the effbot, but I am not > sure. you can get bindings for http://cr.yp.to/ftpparse.html from http://c0re.23.nu/c0de/ftpparsemodule/ or http://effbot.org/downloads/#ftpparse -- http://

Re: Downloading all files older than 3 hours from a ftp-server.

2005-03-15 Thread TZOTZIOY
On 15 Mar 2005 00:38:20 -0800, rumours say that "Thomas W" <[EMAIL PROTECTED]> might have written: >I need to download all files older than 3 hours from a ftp-server. >What's the easiest way to this? I've looked into the standard ftplib, >but it seems like

Downloading all files older than 3 hours from a ftp-server.

2005-03-15 Thread Thomas W
I need to download all files older than 3 hours from a ftp-server. What's the easiest way to this? I've looked into the standard ftplib, but it seems like the only way to go is to parse the ftp.retrlines('LIST') command and that seems to be very easy to mess up. any hints?

Re: Working FTP server based on Twisted framework.

2005-02-24 Thread Kartic
Mateusz SoÅtysek said the following on 2/23/2005 4:45 AM: Hi call, Does anybody know, if there is any opensource, working FTP server implementation based on Twisted framework? Greetings Mateusz, I don't believe there is a ready-to-go FTP server in Twisted (actually google did not r

Working FTP server based on Twisted framework.

2005-02-23 Thread Mateusz Sołtysek
Hi call, Does anybody know, if there is any opensource, working FTP server implementation based on Twisted framework? Greetings -- http://mail.python.org/mailman/listinfo/python-list

Download a file from FTP server to local machine

2005-02-06 Thread rozita raissi
Hello,   I'm writing an ftp client script which must run in explorer. My script must be placed on and run from a web server. User can connect through it to a FTP server. If user requests to download a file from FTP server, file is downloaded to web server on which my script is running. How

Re: FTP Server

2005-01-26 Thread Kartic
Michele - Listen to your inner voice :-) If simple is all you want, try twisted. You can use mktap to create a simple ftp server and be ready to serve in a few minutes. And if you are upto it, get buried in the documents and you can customize your ftp server. If you are looking for something

Re: FTP Server

2005-01-26 Thread michele . simionato
> If you're after a simple FTP server, have a look at medusa. Uhm ... Medusa does not seem actively maintained nowadays. M.S. -- http://mail.python.org/mailman/listinfo/python-list

Re: FTP Server

2005-01-26 Thread michele . simionato
Do you have a code snippet/pointer so I have an idea of how to use it? M.S. -- http://mail.python.org/mailman/listinfo/python-list

Re: FTP Server

2005-01-26 Thread John Abel
If you're after a simple FTP server, have a look at medusa. Regards John [EMAIL PROTECTED] wrote: What's the simplest way to write an FTP Server in Python? A short research on the newsgroup and on the Cookbook did not bring out anything relevant (but I hear a little voice in the back

Re: FTP Server

2005-01-26 Thread John Abel
[EMAIL PROTECTED] wrote: If you're after a simple FTP server, have a look at medusa. Uhm ... Medusa does not seem actively maintained nowadays. M.S. AFAIK, it's maintained to the extent, that if you find bugs/enhance it and let the medusa-dev list know, it more than likel

FTP Server

2005-01-26 Thread michele . simionato
What's the simplest way to write an FTP Server in Python? A short research on the newsgroup and on the Cookbook did not bring out anything relevant (but I hear a little voice in the back of my head saying Twisted, Twisted! ...) Michele Simionato -- http://mail.python.org/mailman/listinfo/p