├── LICENSE ├── README.md ├── app ├── README.md ├── __init__.py └── idgenerator │ ├── __init__.py │ ├── src │ ├── __init__.py │ ├── idgenerator.py │ └── utils.py │ └── test │ ├── __init__.py │ └── test_idgenerator.py ├── outline.md ├── run.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/app/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/idgenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/app/idgenerator/__init__.py -------------------------------------------------------------------------------- /app/idgenerator/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/idgenerator/src/idgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/app/idgenerator/src/idgenerator.py -------------------------------------------------------------------------------- /app/idgenerator/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/app/idgenerator/src/utils.py -------------------------------------------------------------------------------- /app/idgenerator/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/idgenerator/test/test_idgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/app/idgenerator/test/test_idgenerator.py -------------------------------------------------------------------------------- /outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/outline.md -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2023-package/HEAD/setup.py --------------------------------------------------------------------------------