Small FTP library client to handle broken servers
Project description
microftp
Python module to handle FTP protocol (client side only). It is modified original ftplib to handle broken FTP servers in embedded world.
Requirements
It should work with both python2 and python3 with simple pip commands:
pip install microftp
microftpcmd examples
Few microftpcmd examples:
microftpcmd --host 192.168.4.1 ls
microftpcmd --host 192.168.4.1 -d -v ls
microftpcmd --host 192.168.4.1 put local.txt remote.txt
microftpcmd --host 192.168.4.1 put local.txt remote.txt
microftpcmd --host 192.168.4.1 get remote-file.txt local-file.txt
microftpcmd --host 192.168.4.1 rm file-to-delete.txt
Note that you can also specify basic parameters using environment variables:
export MICROFTP_HOST=127.0.0.1
export MICROFTP_USER=user
export MICROFTP_PASSWORD=password
export MICROFTP_DIR=/something
and then you can just specify command:
microftpcmd ls
All options are listed using --help:
microftpcmd --help
Requirements
It should work with both python2 and python3 with simple pip commands:
sudo apt-get update
sudo apt-get install -y python3 python3-pip
sudo pip3 install microftp
Examples
Simple example to get devices and its current status:
import microftp
ftp = microftp.microFTP("127.0.0.1")
ftp.set_pasv(True)
ftp.login()
ftp.set_debuglevel(9999)
ftp.cwd(args.dir)
print(ftp.raw_retrlines('LIST'))
ftp.quit()
Manual
usage: microftpcmd [-h] [--host HOST] [--port PORT] [--delay DELAY]
[--block BLOCK] [--verbose] [--debug] [--user USER]
[--password PASSWORD] [--site SITE] [--siteafter SITEAFTER]
[--dir DIR]
CMD [CMD ...]
microftp - connect to broken or embedded FTP servers
positional arguments:
CMD commands for ftp
optional arguments:
-h, --help show this help message and exit
--host HOST, -i HOST
--port PORT, -P PORT
--delay DELAY
--block BLOCK
--verbose, -v
--debug, -d
--user USER, -u USER
--password PASSWORD, -p PASSWORD
--site SITE, -S SITE
--siteafter SITEAFTER, -A SITEAFTER
--dir DIR, -D DIR
microftpcmd --host 192.168.4.1 ls
microftpcmd --host 192.168.4.1 get remote-file.txt local-file.txt
microftpcmd --host 192.168.4.1 put local-file.txt remote-file.txt
microftpcmd --host 192.168.4.1 -S mount -D sd -A umount ls
microftpcmd --host 192.168.4.1 -S mount -D sd -A site /sd/blink.bit -A umount put blink.bit blink.bit
ulx3s
Some specific ulx3s examples:
microftpcmd --host 192.168.5.7 --delay 0.3 --block 32 -v -d --user root put ~/wget /root/wget
microftpcmd --host 192.168.4.1 -S mount -D sd -A umount ls
microftpcmd --host 192.168.4.1 -S mount -D sd -A site /sd/blink.bit -A umount put blink.bit blink.bit
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
microftp-0.9.0.tar.gz
(4.7 kB
view details)
File details
Details for the file microftp-0.9.0.tar.gz
.
File metadata
- Download URL: microftp-0.9.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8759a347ffe48d428f0927966b63075ab64f264600a96e8d9dc01ace972c54f |
|
MD5 | f6a2b3c29f48ba37674873f7af4bc569 |
|
BLAKE2b-256 | 0fbbd58817e51aaaf30eba011bb15052073cc1314fca10e815e3fdcc4affaae5 |