Awesome-Python-Scripts/Tambola_Ticket_Generator/README.MD

45 lines
2.4 KiB
Plaintext
Raw Normal View History

# Tambola ticket generator
This is a simple utility to generate tambola tickets
## Requirement
* Python 3
* numpy
* tabulate
```bash
pip install -r requirements.txt
```
## Usage
```bash
$ python main.py
╒═══╤════╤════╤════╤════╤════╤════╤════╤════╕
│ 0 │ 14 │ 0 │ 32 │ 0 │ 0 │ 61 │ 71 │ 81 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 4 │ 0 │ 24 │ 33 │ 45 │ 0 │ 63 │ 0 │ 0 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 0 │ 0 │ 25 │ 37 │ 49 │ 59 │ 0 │ 79 │ 0 │
╘═══╧════╧════╧════╧════╧════╧════╧════╧════╛
```
```bash
$ python main.py --count 2
╒═══╤════╤════╤════╤════╤════╤════╤════╤════╕
│ 0 │ 14 │ 0 │ 32 │ 0 │ 0 │ 61 │ 71 │ 81 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 4 │ 0 │ 24 │ 33 │ 45 │ 0 │ 63 │ 0 │ 0 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 0 │ 0 │ 25 │ 37 │ 49 │ 59 │ 0 │ 79 │ 0 │
╘═══╧════╧════╧════╧════╧════╧════╧════╧════╛
╒═══╤════╤════╤════╤════╤════╤════╤════╤════╕
│ 1 │ 0 │ 0 │ 32 │ 42 │ 0 │ 61 │ 72 │ 0 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 0 │ 17 │ 24 │ 0 │ 45 │ 0 │ 0 │ 77 │ 82 │
├───┼────┼────┼────┼────┼────┼────┼────┼────┤
│ 5 │ 0 │ 26 │ 39 │ 49 │ 59 │ 0 │ 0 │ 0 │
╘═══╧════╧════╧════╧════╧════╧════╧════╧════╛
```