Python Project to generate QR codes
Creates a QR code based on a string input to the URL
- Python 3.7 or greater
This code makes use of the
f"..."
or f-string syntax. This syntax was introduced in Python 3.6.
For additional requirements and dependencies, please see the requirements.txt file.
To create virtual environment:
py -m venv env
To activate
env\Scripts\activate
To install requirements.txt
pip install -r requirements.txt
To freeze requirements.txt after additional installs
pip freeze > requirements.txt
To apply black (depends on system setup)
py -m black [filename]
black [filename]
To analyze flake8 violations
flake8 Project --output-file ./reports/flake8/flake8stats.txt
For genbadge on Flake8 (must do both flake8 commands first)
genbadge flake8 --output-file ./reports/flake8/badge.svg
- [] N/A