22 lines
449 B
Markdown
22 lines
449 B
Markdown

|
|
|
|
## 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`
|