Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spokanetech/spokanepythonusergroup
Website for the Spokane Python user group
https://github.com/spokanetech/spokanepythonusergroup
mkdocs python spokane
Last synced: 2 months 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T00:43:59.000Z (4 months ago)
- Last Synced: 2024-09-18T04:34:37.483Z (4 months ago)
- Topics: mkdocs, python, spokane
- Language: HTML
- Homepage:
- Size: 31.3 MB
- Stars: 7
- Watchers: 4
- 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
```