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/
- Host: GitHub
- URL: https://github.com/symonk/pydocs
- Owner: symonk
- License: apache-2.0
- Created: 2021-07-25T11:32:26.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-28T13:41:11.000Z (over 3 years ago)
- Last Synced: 2025-02-08T20:47:32.516Z (3 months ago)
- Language: Python
- Homepage:
- Size: 318 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pydocs
[](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!