httk-web¶
This site documents specifically the httk-web module. For the full documentation of httk₂ as a whole, see docs.httk.org.
httk-web is a httk₂ module providing web serving and static publishing functionality under the namespace httk.web.
Quick links
Install¶
Preferably work in a Python virtual environment, then do:
git clone https://github.com/httk/httk-web
cd httk-web
python -m pip install -e .
Usage (tiny example)¶
from httk.web import serve
# Serve a site source directory on http://127.0.0.1:8080
serve("path/to/site/src")