python-oracledb/doc
Anthony Tuininga b49b553443 Preparing to release 1.4.1. 2023-09-06 16:22:56 -06:00
..
src Preparing to release 1.4.1. 2023-09-06 16:22:56 -06:00
Makefile Documentation improvements. 2022-11-07 10:29:51 -07:00
README.md Further doc improvements. 2022-06-24 10:53:18 -06:00
requirements.txt Include the minimum version for the sphinx-rtd-theme package. 2023-02-01 10:54:38 -07:00

README.md

Sphinx is used to generate the HTML for the python-oracledb documentation.

The generated python-oracledb documentation is at https://python-oracledb.readthedocs.io/

This directory contains the documentation source. It is written using reST (re-Structured Text). The source files are processed using Sphinx and can be turned into HTML, PDF or ePub documentation.

If you wish to build documentation yourself, install Sphinx and the Read the Docs theme. Sphinx is available on many Linux distributions as a pre-built package. You can also install Sphinx and the Read the Docs theme using the Python package manager "pip", for example::

python -m pip install -r requirements.txt

For more information on Sphinx, please visit this page:

http://www.sphinx-doc.org

Once Sphinx is installed, the supplied Makefile can be used to build the different targets, for example to build the HTML documentation, run::

make

To make ePub documentation, run::

make epub

To make PDF documentation, run::

make pdf

The program latexmk may be required by Sphinx to generate PDF output.