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

https://github.com/symonk/pydocs

:orange_book: A wealth of python learning resources, documented by me as I progress and learn. https://symonk-pydocs.readthedocs.io/en/latest/
https://github.com/symonk/pydocs

Last synced: about 2 months ago
JSON representation

:orange_book: A wealth of python learning resources, documented by me as I progress and learn. https://symonk-pydocs.readthedocs.io/en/latest/

Awesome Lists containing this project

README

        

# pydocs

[![Documentation Status](https://readthedocs.org/projects/symonk-pydocs/badge/?version=latest)](https://symonk-pydocs.readthedocs.io/en/latest/?badge=latest)

Python website where I document my learning materials to share with others.

- [Click here for Docs](https://symonk-pydocs.readthedocs.io/en/latest/)

# Building locally

- pip install tox
- python -m venv .venv
- source .venv/bin/activate (unix) || .venv\Scripts\activate (windows)
- tox -e docs
- Access the docs via /docs/build/

# Editing docs with hot reloading

- pip install tox
- python -m venv .venv
- source .venv/bin/activate (unix) || .venv\Scripts\activate (windows)
- tox -e hotreload
- Edit /docs and the browser will be auto reloaded!