Download Latest Version robotframework-ftplibrary.zip (65.0 kB)
Email in envelope

Get an email when there's a new version of Robot Framework FTP Library

Home / 1.0
Name Modified Size InfoDownloads / Week
Parent folder
FtpLibrary.zip 2013-10-17 58.1 kB
FtpLibrary.py 2013-10-15 16.0 kB
FtpLibrary.html 2013-10-14 115.1 kB
README.txt 2013-10-14 1.7 kB
LICENSE_gpl-3.0.txt 2013-10-14 35.8 kB
FtpLibraryExample.txt 2013-10-14 1.0 kB
Totals: 6 Items   227.7 kB 0
Robot Framework FTP Library

-----------------------------license--------------------------------
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

----------------------------------------------------------------------

This is an unofficial (not linked from http://robotframework.org/) Robot
Framework library which provides functionality of FTP client.

Version 1.0 released on 15th of October 2013.

FTP communication provided by ftplib.py. While developing, following versions of
 software were used:
- robotframework-2.8.1
- robotframework-ride-1.2.1
- python-2.7.5

Author: Marcin Kowalczyk

Website: http://sourceforge.net/projects/rf-ftp-py/

Installation: Just copy FtpLibrary.py file to a directory pointed by PYTHONPATH
(for example ...\Python27\lib).

The simplest test example (connect, change working dir, check working dir, close):
 | ftp connect | 192.168.1.10             | mylogin | mypassword |
 | cwd         | /home/myname/tmp/testdir |         |            |
 | pwd         |                          |         |            |
 | ftp close   |                          |         |            |
Source: README.txt, updated 2013-10-14