https://github.com/spokanetech/spokanepythonusergroup
Website for the Spokane Python user group
https://github.com/spokanetech/spokanepythonusergroup
mkdocs python spokane
Last synced: about 1 year ago
JSON representation
Website for the Spokane Python user group
- Host: GitHub
- URL: https://github.com/spokanetech/spokanepythonusergroup
- Owner: SpokaneTech
- License: mit
- Created: 2021-05-17T23:17:35.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T04:28:07.000Z (about 1 year ago)
- Last Synced: 2025-04-12T21:38:26.429Z (about 1 year ago)
- Topics: mkdocs, python, spokane
- Language: HTML
- Homepage:
- Size: 33.6 MB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: docs/code-of-conduct.md
Awesome Lists containing this project
README
# Spokane Python User Group Code Samples
[https://spokanepython.com/](https://spokanepython.com/)
---
## Documentation
- Serve
- `mkdocs serve`
- Build
- `mkdocs build`
### Dependencies
Create a virtual environment
```shell
python -m venv .venv
source .venv/bin/activate
pip-sync
```
Install required Python packages
```shell
python -m pip install pip-tools
pip-sync
```
Update `requirements.txt`
```shell
# python -m pip install pip-tools
pip-compile --resolver=backtracking
```
Install [CairoSVG](https://cairosvg.org/documentation/#installation) requirements
```shell
sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
```