picker/README.md
2023-06-03 23:32:05 +03:00

23 lines
450 B
Markdown

![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`