extended_http_server

(★ 92)

An extended version of python's SimpleHTTPServer that supports https, authentication, rate limiting, and download resuming.

File Explorer

  • .gitignore
  • .pre-commit-config.yaml
  • ext_http_server.py
  • LICENSE.txt
  • pyproject.toml
  • README.md
  • uv.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

openssl req

View Details ▼

Manage PKCS#10 Certificate Signing Requests.

openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}

Generate a certificate signing request to be sent to a certificate authority:

openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}

Generate a self-signed certificate and a corresponding key-pair, storing both in a file:

🔍

uv tool

View Details ▼

Install and run commands provided by Python packages.

uv tool run {{command}}

Run a command from a package, without installing it:

uv tool install {{package}}

Install a Python package system-wide:

uv tool upgrade {{package}}

Upgrade an installed Python package:

🔍

uvx

View Details ▼

This command is an alias of `uv tool run`.

tldr uv tool

View documentation for the original command:

// repository documentation