commit 211fdb107746ede1f021cc114b9ac6ad997a6555 Author: Boyan Date: Sat Jun 3 21:33:52 2023 +0300 Project outline completed diff --git a/README.md b/README.md new file mode 100644 index 0000000..ea1a454 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +![Banner](assets/Banner.png) + +## Simple random choice maker + +Quite self-explanatory I believe. It's a random choice maker with a little wheel animation. Written in Python QT5. + +### Usage +`python picker.py --choices=choice1, choice2, "Choice with spaces"` +Or you can create a json file with this structure: +``` +{ + choices: [ + "Choice 1", + "Choice 2", + "Choice 3" + ], + +} +``` +And running: +`python picker.py --file file.json` diff --git a/assets/Banner.png b/assets/Banner.png new file mode 100644 index 0000000..05eb4d9 Binary files /dev/null and b/assets/Banner.png differ diff --git a/assets/Picker.png b/assets/Picker.png new file mode 100644 index 0000000..a6691ae Binary files /dev/null and b/assets/Picker.png differ