Read a QR code from an image file.
Install Python, then install pipx and use it to install qread:
pipx install qreadqread <qr code image file>For all options, run qread --help
git clone https://github.com/ReK42/qread.git
cd qread
python -m venv .env
source .env/bin/activate
python -m pip install --upgrade pip pre-commit
pre-commit install
pip install -e .[test]To check:
mypy src
ruff check src
ruff format --diff srcTo auto-fix/format:
ruff check --fix src
ruff format srcpip install -e .[build]
python -m build