An open API service indexing awesome lists of open source software.

https://github.com/bhrutledge/sphinx-requests-typehints


https://github.com/bhrutledge/sphinx-requests-typehints

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# sphinx-requests-typehints

Example project showing how Sphinx's [`autdoc`](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html) and [`intersphinx`](https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html) extensions handle type hints from [`requests`](https://docs.python-requests.org/en/master/).

See the rendered API documentation at .

## Getting started

In an active virtual environment:

```sh
pip install -r requirements.txt

make -C docs html

open docs/_build/html/example_package.html
```

To run a live server:

```sh
make -C docs livehtml
```