Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

listthedocs

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

listthedocs

List your documentations

  • 2.0.1
  • PyPI
  • Socket score

Maintainers
1

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. Default ROOT-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:

  1. Add the project (if not already present)
  2. 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

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')
)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc