sphinxserve renders sphinx docs monitoring file changes
Project description
sphinxserve is a tool to effectively document projects
Since the internet adopted HTML, many communities are trying to find ways to write web pages in ways that can be pleasantly readable and writable. In our python community, reStructuredText and Sphinx have been created to author beautiful documentation. The goal of sphinxserve is to make them more accessible, interactive, and convenient to use.
Examples of projects using sphinx
Sphinx |
|
Read The Docs |
|
Projects using sphinx |
|
sphinxjp.themes.revealjs |
|
loadconfig |
Design considerations
sphinxserve was originally conceived as a Python and Linux project that can visualize sphinx document modifications in real time while working on them. At its core, sphinxserve uses the awesome projects gevent to provide concurrency and event coordination, flask for web communication, Sphinx for reStructucturedText rendering and of course Python. sphinxserve used to control browser reloading with xdotool, introducing a complex system tool dependency. On release 0.7, sphinxserve decouples from this system dependency using instead flask-sockets python package. The tradeoff here was to temporarily drop python3 support until the gevent ecosystem officially supports python3 which should be soon. Also, the filesystem notification tool was upgraded to watchdog, removing another system dependency and making the code more generic and cleaner. With these changes, as of release 0.7.4, sphinxserve is able to run in other platforms as OSX and Windows for example.
Installation
sphinxserve can be installed either as a python package, or as a docker application. On linux and OSX, it can also be installed as a pex python executable
Python executable (PEX)
This is the easiest (no compilation or fancy tooling needed) and smallest (~9 MB) way to install sphinxserve using the excellent PEX tool. In itself, it is a zipfile containing all python package dependencies and only requires the python interpreter. This pex is verified to work at least in Debian>=7, Ubuntu>=14, Centos>=7 and Arch distros on Linux and in Yosemite on OSX.
Linux
System dependencies: glibc linux>=3, python>=2.7,<3 and a web browser supporting websockets (Firefox, Chrome, etc) on Linux:
$ wget -O ~/bin/sphinxserve https://github.com/mzdaniel/sphinxserve/releases/download/0.7.4/sphinxserve-linux $ chmod 755 ~/bin/sphinxserve
OSX
Yosemite already has all needed dependencies:
$ wget -O ~/bin/sphinxserve https://github.com/mzdaniel/sphinxserve/releases/download/0.7.4/sphinxserve-osx $ chmod 755 ~/bin/sphinxserve
Python package
Linux system dependencies: glibc linux>=3, python>=2.7,<3, the C toolchain (package names dependent on linux distro) to compile gevent and a web browser supporting websockets. pip automatically downloads sphinxserve and its python dependencies, compiles and builds wheel binary packages as needed and finally install sphinxserve.
OSX system dependencies: Xcode. Verified to work on Yosemite.
Windows system dependencies: Verified to work on Windows 7, python >=2.7,<3 and a web browser supporting websockets with just pip installing.
In all systems:
$ pip install sphinxserve
Docker application
Docker is an extraordinary tool that simplifies the entire dependency tree by including it in a system image. This makes the installation experience much more pleasant and the ability to run on OSX, Windows and Linux with the same image, assuming proper setup of the docker network and volume. Another advantage is that a running image cannot see your filesystem by default. Sharing directories and which ones is an explicit setup. This method is verified to work on Linux so far.
System dependencies: docker and a web browser supporting websockets.
This installation command automatically downloads sphinxserve image (~40 MB) and creates a small shell script ~/bin/sphinxserve that simplifies the running interface with the following command:
$ docker run mzdaniel/sphinxserve install | bash
Launching
Launching sphinxserve is as simple as:
$ sphinxserve [OPTIONAL_SPHINX_PATH]
By default, it assumes the sphinx project is in the current directory. A sphinx project needs to have the configuration file conf.py, and if not found, sphinxserve will automatically create 2 new files: conf.py and a restructuredtext index.rst.
To change host and/or port, and other options, check the help with:
$ sphinxserve serve --help
Workflow
After launching sphinxserve, it will build the sphinx pages and serve them by default on localhost:8888. To see the rendered documentation, just point your browser to localhost:8888. Any saved changes on rst or txt files will trigger docs rebuild.
Thanks!
Georg Brandl & David Goodger for Sphinx and reStructuredText
Denis Bilenko, Armin Rigo & Christian Tismer for Gevent and Greenlet
Armin Ronacher for Flask
Jeffrey Gelens & Kenneth Reitz for gevent websocket and flask sockets
Yesudeep Mangalapilly for watchdog
Eric Holscher for Read The Docs
Brian Wickman for PEX
Mark Otto, Jacob Thornton & Ryan Roemer for Bootstrap sphinx bootstrap
Hakim El Hattab & tell-k for Revealjs and sphinx revealjs
Solomon Hykes, Jerome Petazzoni and Sam Alba for Docker
The awesome Python, Linux and Git communities
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.
Source Distribution
Built Distribution
File details
Details for the file sphinxserve-0.7.4.tar.gz
.
File metadata
- Download URL: sphinxserve-0.7.4.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9f76a6ecbe2d046c53ed9cb03f261816a7630150d84a171edd2bcd1bed33a9f |
|
MD5 | 8cb7a79f49ad509e82baf298938126c5 |
|
BLAKE2b-256 | 87333ba4395a9b34fe330543888cb171d6eb2907d04288787c4c8604ab16d5bd |
File details
Details for the file sphinxserve-0.7.4-py2-none-any.whl
.
File metadata
- Download URL: sphinxserve-0.7.4-py2-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b44ead1157f15b257c125ff06fef6af76995ffe6886b4d1f843ad29ad7218a2 |
|
MD5 | 67fa9b193f02166de2462b2bb33ac4d6 |
|
BLAKE2b-256 | 43a7747d1aa894f5d9bd19652cd6f9b07fe713376f9405815047d073ca1ab6ff |