Skip to main content

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

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()

Project details


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.1.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page