ext_http_server

An extended version of Python's SimpleHTTPServer
Download

ext_http_server Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Other/Proprietary Li...
  • Price:
  • FREE
  • Publisher Name:
  • Bryce Boe
  • Publisher web site:
  • https://github.com/praw-dev/

ext_http_server Tags


ext_http_server Description

ext_http_server is an extended version of Python's SimpleHTTPServer that supports https, authentication, rate limiting, and download resuming.Installationpip install ext_http_serverGenerate a certificateRun the following to generate cert.pem:openssl req -new -x509 -days 365 -nodes -out cert.pem -keyout cert.pemRunning ext_http_serverIf you have files you want to serve in /tmp/path/to/files/ run the following to serve them up with a max outgoing throughput of 16KBps:ext_http_server --cert cert.pem -d /tmp/path/to/files -r16 -a foo:barBy default, you will be able to access the webserver at https://localhost:8000. To authenticate, use the username foo and the password bar as indicated by the -a foo:bar argument. Note that multiple -a arguments can be added to add more than one user.Product's homepage


ext_http_server Related Software