picker/README.md

24 lines
469 B
Markdown
Raw Normal View History

2023-06-03 21:33:52 +03:00
![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`
TODO: Add argparse