Skip to content

Instantly share code, notes, and snippets.

View jesinity's full-sized avatar
🏠
Working from home

jesinity jesinity

🏠
Working from home
  • Genova , Milano , Italy
View GitHub Profile
@jesinity
jesinity / SimpleHTTPServerWithUpload.py
Last active February 19, 2018 12:13 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
##################################################################################
#
# example file upload : curl -X POST -F file=@./my_file.txt http://<host-ip>:8000
#
##################################################################################
"""Simple HTTP Server With Upload.