https://github.com/merofuruya/serial_number_gen
A Seruial number generator cli python script - made this in school :)
https://github.com/merofuruya/serial_number_gen
cli generator python serialnumbers
Last synced: about 1 year ago
JSON representation
A Seruial number generator cli python script - made this in school :)
- Host: GitHub
- URL: https://github.com/merofuruya/serial_number_gen
- Owner: MeroFuruya
- License: mit
- Created: 2023-05-11T08:32:30.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-11T09:21:01.000Z (about 3 years ago)
- Last Synced: 2025-06-01T05:10:06.540Z (about 1 year ago)
- Topics: cli, generator, python, serialnumbers
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Serial Number Generator
## Description
- The generator shall be controlled either via console or GUI.
- It should be possible to choose between different serial number types (e.g. only numbers, letters, length).
- With a button (GUI) or number (console) serial numbers can be generated.
- These are stored in a `.csv` file (`valid_numbers.csv`) line by line.
- The program offers the possibility to enter a serial number. Afterwards the program checks
by means of the file `valide_number.csv` whether the serial number is present there. If yes, `"Valid"` is output as text is displayed. If not, `"not Valid"` is displayed.
- If a serial number was classified as valid, the serial number is marked as used in the file.
in the file.
- If you try to enter an already used serial number, the message "already used" appears.
## The CSV
| Serial Number | Used |
| ------------- | ---- |
| 123456 | true |
| 123457 | false|