Skip to content

A modified ThreadedHTTPSServer designed for serving local static content.

License

Notifications You must be signed in to change notification settings

3-manifolds/cocoserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Simple HTTP Server for Static Content

This Python module provides a modified version of the ThreadingHTTPServer class from the http.server module in the standard library. This server is designed to serve a static web site, such as documentation for a python project generated by Sphinx and installed with the software. It serves the files locally, on a random port of the loopback interface, and hence works off line. The server runs in its own daemon thread of the python process, so it terminates when the python program exits and thus will not leave zombie processes running.

The server has been modified to allow any file in the site to be gzip compressed and served with a Content-Encoding header set to "gzip". The compressed file will be automatically decompressed by the browser, with no noticeable performance loss. This is more efficient than the typical case of serving compressed content over the internet since the compression is done in advance. It also takes significantly less space on the user's disk. (Brotli compression would be even more efficient in both ways, but web browsers still tend to only support Brotli compression over https, due to the prevalence of broken proxy servers on the internet.)

Source code is available on Github. The git repository includes a script (compress_site.py) for compressing all of the .html, .css, .js, .woff and .svg files below a given site root directory. The tool is aware of Sphinx's tendency to produce many identical copies of the same (large) _static directory. So it also collects the contents of all of the _static subdirectories into one _static directory in the root, replacing the others by symlinks.

The server can be installed by running: python3 -m pip install cocoserver.

To use the server:

>>> from cocoserver import StaticServer
>>> s = StaticServer('my/site/root')
>>> s.visit('mypage')

The pip package also installs a console script named coco which can be used to view your static site, for example by running: coco /usr/local/share/doc/myproject.

About

A modified ThreadedHTTPSServer designed for serving local static content.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published