A simple GUI application for hashing files and text.
- Python 3.13 or newer.
uvinstalled and available on your PATH.
-
Clone the repository:
git clone https://github.com/MrSplatchy/Hash-GUI.git cd Hash-GUI -
Make sure Python 3.13+ is available:
python --version
If needed, you can let
uvmanage the Python version:uv python install 3.13
-
Create the environment and install dependencies:
uv sync
Start the application with:
uv run python main.pyTo run the app after making changes, use the same command:
uv run python main.pyuv syncinstalls the project dependencies into the local virtual environment.uv runensures the app runs inside that environment without manual activation.