Skip to content

PascalBod/simplePythonHttpServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

A simple Python HTTP server

Credits

Forked from Miel Donkers's gist.

Purpose

For one of the projects I'm working on, I need to send a binary file from a device to a desktop computer. SSH or FTP are not available on device side, but curl is there. Using it to send a binary file is as simple as

curl --request POST --data-binary "@<filePath>" <remoteAddress>:<remotePort>

On the computer, I need a (simple) HTTP server, to answer the POST request, and to save the received file.

This is the purpose of this program.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages