Metadata-Version: 2.1
Name: python-ftp-server
Version: 1.3.17
Summary: Command line FTP server tool designed for performance and ease of use.
Home-page: https://github.com/Red-Eyed/python_ftp_server
Author: Vadym Stupakov
Author-email: vadym.stupakov@gmail.com
Maintainer-email: vadym.stupakov@gmail.com
License: MIT
Keywords: ftp,cli,cmd,server
Platform: UNKNOWN
Classifier: Topic :: Communications :: File Sharing
Classifier: Topic :: Internet :: File Transfer Protocol (FTP)
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.26)
Requires-Dist: pyftpdlib (>=1.5.6)
Requires-Dist: pyopenssl (>=21.0.0)
Requires-Dist: pysendfile (>=2.0.1) ; sys_platform != "win32"

# FTP server to transfer files between machines with zero configuration
## Usage
1. `python3 -m pip install python-ftp-server`
2. `python3 -m python_ftp_server -d "dirctory/to/share"`
will print:
```bash
Local address: ftp://<IP>:60000
User: <USER>
Password: <PASSWORD>
```
3. Copy and paste your `IP`, `USER`, `PASSWORD`, `PORT` into [FileZilla](https://filezilla-project.org/) (or any other FTP client):
![](https://github.com/Red-Eyed/python_ftp_server/raw/master/img.png)


