Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FtpTiny

Summary

A simple ftp server that runs in Micropython in a thread. To use this with FileZilla, set it to PASV mode and maximum of 1 connection at a time.

Modified from https://github.com/cpopp/MicroFTPServer/tree/master/uftp

Usage

To use this, import the library (ftptiny), create one, then use start and stop.

import ftptiny
ftp = ftptiny.FtpTiny() # create one
ftp.start() # start an ftp thread
# do whatever you want to do here
ftp.stop() # stop the ftp thread

Supported

This supports:

  • Folders: create, delete, rename
  • Files: send, receive, delete, rename
  • Path: change directory, list contents

About

Really small ftp server that runs in a thread

Resources

Stars

9 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages