List your documentations
Project description
List The Docs
List The Docs allows to collect the documentation of projects hosted in different servers in the same page.
See full documentation at https://allebacco.github.io/listthedocs/.
List The Docs does not (actually) provides documentation hosting, but it offer only a web page with a nice list of project and documentation links.
This work has been started from Host the Docs, but has lead to a complete rewrite of the code and the aim of the project.
The project is written in Python using Flask.
Start the server
Since List The Docs is writte using Flask it can be execute with the follwing commands:
export FLASK_APP=listthedocs
flask run
* Running on http://127.0.0.1:5000/
For Windows commandline use:
set FLASK_APP=listthedocs
And for Windows Powershell use:
$env:FLASK_APP="listthedocs"
Configuration
The service can be configured with a Python file config.py
that can be placed in the app
"instance_path" (https://flask.palletsprojects.com/en/1.0.x/config/#instance-folders).
The instance_path can be customized by setting the INSTANCE_PATH to an absolute path.
The configuration is loaded from the config.py
in the instance_path:
- DATABASE_URI: Database connection URI. Default to an SQLite database.
- COPYRIGHT: The copyright footer message. HTML is allowed.
- TITLE: The title of the web pages.
- HEADER: The header of the web page. HTML is allowed.
- READONLY: Set to true to disable the write REST APIs.
- LOGIN_DISABLED: Disable the login and security.
- ROOT_API_KEY: The Api-Key for the
root
user. DefaultROOT-API-KEY
.
Usage
The service provides a set of REST APIs to manage projects and versions.
Build and Host documentation
Before using the APIs, you should build the documentation (e.g. with Sphinx, MkDocs, Doxygen, ...) and host it on a web server. List The Docs does not actuallt provides docuemntation hosting services.
Collect documentations in List The Docs
After deploying a (new) project documentation on a hosting service, you can visualize it in List The Docs:
- Add the project (if not already present)
- Add the version to the project
Add a project to List The Docs
Adding a project to List The Docs can be done using the following REST API:
import requests
response = requests.post(
'http://localhost:5000/api/v1/projects',
json={
'title': 'Project Title',
'description': 'The description of the project',
}
)
# The response contains the `name` of the project
Add a documentation version link to List The Docs
Adding a version for a project documentation to List The Docs can be done using the following REST API:
import requests
requests.post(
'http://localhost:5000/api/v1/projects/<project-name>/versions',
json={
'name': '1.0.0',
'url': 'http://www.example.com/doc/1.0.0/index.html',
}
)
Python Client
To simplify the management of the projects, List The Docs provides a simple Python client:
from listthedocs.client import ListTheDocs, Project, Version
client = ListTheDocs()
project = client.add_project(
Project(title='Project Title', description='description')
)
client.add_version(
project,
Version('1.0.0', 'http://www.example.com/doc/1.0.0/index.html')
)
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 Distributions
Built Distribution
File details
Details for the file listthedocs-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: listthedocs-2.0.1-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c95dd671b595bbd7c35f67f16e8b10c8fcd18182aee8050dedd4794634bc942c |
|
MD5 | 56d515cdf5a4e1b255f032079a17c2fd |
|
BLAKE2b-256 | d0fa2f88e805e55370f4e7be273627a75149440fcb7a5c31549c8c08b564fb40 |