An application to manipulate postcode data.
- Python 3
- Python virtual environment - Setup a folder called
.venv
withpython -m venv .venv
and activate with.\\.venv\\Scripts\\activate
- Dependencies - Installed by running
pip install -e .[dev]
(remember to do so from inside a virtual environment)
pyinstaller --onefile src/postcode_parse/postcode_parse.py --clean
- Compile the
postcode_parser.iss
in Inno Setup Compiler - Run the installer (to install or to update)
- To launch via Python, call
python src/postcode_parse/postcode_parse.py
from within the virtual environment.