Skip to content

Latest commit

 

History

History
100 lines (65 loc) · 4.05 KB

README.md

File metadata and controls

100 lines (65 loc) · 4.05 KB

PyQGIS icons cheatsheet generator

🚀 Build & publish

Code style: black flake8 Imports: isort pre-commit pre-commit.ci status

Script to convert a remote QRC (Qt Resources Collection files) into a markdown table to preview images.

This project covers QGIS project and generates a cheatsheet published on https://geotribu.github.io/pyqgis-icons-cheatsheet/.

Credits

Author: Julien M. (:octopus: Guts on GitHub, 🐦 GeoJulien on Twitter) for Geotribu collaborative website.

Code under MIT license.
Content and methodolgy under Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
Website icon by Arunmozhi, CC BY-SA 4.0 https://creativecommons.org/licenses/by-sa/4.0, via Wikimedia Commons.

Related plugin

There is also a plugin that allow to browse resources right into QGIS. Don't miss it!

demo_qgis_plugin_resource_browser.webm

Related contents


Development

Requirements

Setup

Typically on Ubuntu:

python3 -m venv .venv
source .venv/bin/activate
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements.txt
pre-commit install

Cheatsheet

Run the script:

python qrc_preview_in_md.py

The output markdown page is located at docs/index.md, overriding the version pushed as project has been started.

Website

Copy the README.MD into the docs folder:

cp README.md docs/credits.md

Build:

mkdocs build

Serve locally:

mkdocs serve

Open your browser on: http://localhost:8000


Deployment

The website is monthly regenerated and deployed on GitHub Pages using GitHub Actions. For more details, see the deploy.yml workflow.