Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
setup.py | 2013-11-03 | 1.1 kB | |
README.txt | 2013-11-03 | 1.7 kB | |
LICENSE_gpl-3.0.txt | 2013-11-03 | 35.8 kB | |
FtpLibraryExample.txt | 2013-11-03 | 1.3 kB | |
FtpLibrary.zip | 2013-11-03 | 59.0 kB | |
FtpLibrary.py | 2013-11-03 | 16.6 kB | |
FtpLibrary.html | 2013-11-03 | 115.5 kB | |
Totals: 7 Items | 231.0 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 library provides functionality of FTP client. Version 1.1 released on 3rd of November 2013. What's new in release 1.1: - ftp_connect() uses regular arguments only instead of **kwargs - setup.py added FTP communication provided by ftplib.py. While developing, following versions were used: - robotframework-2.8.1 - robotframework-ride-1.2.1 - python-2.7.5 Tested on: - Windows 7 - Debian 6 - ProFTPD Author: Marcin Kowalczyk Website: http://sourceforge.net/projects/rf-ftp-py/ Installation: - run command: python setup.py install OR - copy FtpLibrary.py file to a directory pointed by PYTHONPATH (for example ...\Python27\lib\site-packages). The simplest example (connect, change working dir, print working dir, close): | ftp connect | 192.168.1.10 | mylogin | mypassword | | cwd | /home/myname/tmp/testdir | | pwd | | ftp close |