Skip to content

RalfHacker/HTTPServerWithUpload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

HTTPServerWithUpload

Python3 HTTP Server with upload functionality

Run server:

python3 HTTPServerWithUpload.py 80

Upload file:

  • curl:
curl -X POST http://server.com/ -H "Content-Type: multipart/form-data" -F file=@"file.zip"
  • powershell:
$wc=New-Object System.Net.WebClient; $resp=$wc.UploadFile('http://server.com',"C:\file.zip")

About

Python3 HTTP Server with upload functionality

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages