This repository contains an FTP client library for pycom boards (MicroPython). It is based on the micropython-ftplib implementation. Modifications to the lib/ftplib.py
were done in order to work in the pycom modules. This library was only tested on WiPy 3.0 and FTP_TLS is not fully tested yet.
root/
|
|- lib/ _______________________________ # Firmware source files
| |- ftplib.py _______________________ # ftplib adapted to pycom modules
|
|- main.py ____________________________ # Example of main program that includes several tests.
|- config.json ________________________ # Configuration file (WiFi and FTP parameters)
|
To use this library, clone this repository, change config.json
file with your WiFi and FTP credentials, and program all files to the board.
Code in file main.py
and modifications of lib/ftplib.py
have Copyright (c) of Pablo Zinemanas 2020. This code has the same Python Software Foundation License than the original library.