Free range artisnal HTTP
Project description
Handmade HTTP Project (HHTTPP)
Free range artisnal HTTP
HHTTPP is an educational tool that is part of a series of blog posts being made to help teach about HTTP servers, and how to build one from scratch in python. The goals of the project are to build a package that:
- Can be installed from pip (uploaded to pypi)
- Can do all basic types of requests and responses (not every response code supported)
- Have a simple CLI to make it easy to use
Quick-start
Installation
From source
- Clone this repo: (put github/source code link here)
- Run
pip install .
orsudo pip3 install .
in the root directory - Confirm it is working by running
hhttpp -h
which should show you the text you see in usage
From PyPi
- Run
pip install hhttpp
- Confirm it is working by running
hhttpp -h
which should show you the text you see in usage
Usage
HHTTPP has a CLI that you can use, the usage string can be found below:
hhttpp
Free range artisnal HTTP server
Usage:
hhttpp [-h] [-v] [-p PORT] [-f PROXY_FOLDER]
Options:
-h, --help Show this help message and exit
-v, --version Show program's version number and exit
-p PORT, --port PORT The port to start the server on
-f PROXY_FOLDER, --folder PROXY_FOLDER
Lets you specify a folder to proxy instead of cwd
By default just running hhttpp
in a folder will proxy the current folder (unless otherwise specified) you're in and find an available port to bind to if one is not specified (starting with 8338).
API Examples
The simplest way to use hhttpp
as an API is to import the Server
object, and let it run:
from hhttpp import Server
Server().start_server()
The server object in this case will have all the logs and server state, so if you want to change behaviours, modify it's initialization. For example initializing while only allowing certain files to be visible to the server:
from hhttpp import Server
s = Server(file_list = ["index.html", "/css/main.css"])
s.start_server()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.