Toolset to generate ticket universes
Project description
Ticket Universe
A command line interface and library to generate a universe of unique ticket codes in Python 3.x.
Installation
Ticket Universe can be installed via pip:
pip install ticket-universe
Usage
Ticket Universe can be used as library and as command line interface.
Command line interface
The ticket universe cli provides a means to generate a universe and write it to stdout.
usage: ticket-universe [-h] [--offset OFFSET] [--limit LIMIT]
[POSITION [POSITION ...]]
example: ticket-universe fixed:LTFY- alpha numeric numeric numeric
positional arguments:
POSITION alpha | alpha:safe_latin | numeric | range:min:max |
fixed:{} | binary
optional arguments:
-h, --help show this help message and exit
--offset OFFSET
--limit LIMIT
Library
from ticket_universe.position import FixedPosition, AlphaPosition, NumericPosition, RangedPosition
from ticket_universe.universe import Universe
standard_universe = Universe([
FixedPosition('LTFY-'),
AlphaPosition(),
NumericPosition(),
NumericPosition()
])
# ['LTFY-A00', ..., 'LTFY-Z99']
print([t for t in standard_universe])
# Alternate charsets for alpha positions
charset_universe = Universe([AlphaPosition('safe_latin'), AlphaPosition('safe_latin')])
tickets = [t for t in charset_universe]
print('O' in tickets, 'I' in tickets, 'L' in tickets) # False, False, False
# Limited, generate only a part of the universe
limited_universe = Universe([RangedPosition(0, 999)])
print(len([t for t in limited_universe.generate(limit=10, offset=2])) #8
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ticket_universe-0.4.tar.gz.
File metadata
- Download URL: ticket_universe-0.4.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
858b3d9f7f01834cdbe0b0a4e80360f41e57183643dfe7215d16e9c8dbe3a2c2
|
|
| MD5 |
eb5eceddac92a323bc3c7335db7e3735
|
|
| BLAKE2b-256 |
f51c167db1f1b23d702e94520b95491fe3c5e081a086df81a2ecf4f5e1328f1d
|
File details
Details for the file ticket_universe-0.4-py3-none-any.whl.
File metadata
- Download URL: ticket_universe-0.4-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d21785b29bc063a316d2b96a5c1aa71817bdec41db7f9717f05f04cdd7842333
|
|
| MD5 |
702a703857d93bfa8e4e1b1bf13ff4a0
|
|
| BLAKE2b-256 |
03477f83a9aed484ae9f01bfecced04fff358324806190b3f7a93d9ca8987537
|