Build a HTTP Server
# Python2
python -m SimpleHTTPServer PORT
# Python 3
python -m http.server PORT
python -m http.server PORT --bind example.com
Build a FTP Server
pip install pyftpdlib
python -m pyftpdlib -p 21 # notice: it's ftpd, not ftp
# if you want a username and password
python -m pyftpdlib -u USERNAME -P PASSWORD
A powershell script could run in Windows
place a file named “ftp.ps1” with the following content:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Set-Location -Path D:\Download
Start-Process -NoNewWindow python --version
python -m pyftpdlib -p 21 -u USERNAME -P PASSWORD
Read-Host -Prompt "Press Enter to exit"
and then run with Powershell
Advanced Usage
from pyftpdlib.handlers import FTPHandler
from pyftpdlib.servers import FTPServer
from pyftpdlib.authorizers import DummyAuthorizer
authorizer = DummyAuthorizer()
authorizer.add_user('python', '123456', 'F:\\Working~Study', perm='elradfmwM')
handler = FTPHandler
handler.authorizer = authorizer
server = FTPServer(('0.0.0.0', 8888), handler)
server.serve_forever()
Reference
https://blog.51cto.com/phyger/5182139