├── .gitignore ├── LICENSE ├── README.rst ├── SnipeITLabelGenerator ├── __init__.py ├── config.py └── mkinventorylabel.py ├── mkassetlabel.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.egg-info 3 | __pycache__/ 4 | Pipfile.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/README.rst -------------------------------------------------------------------------------- /SnipeITLabelGenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SnipeITLabelGenerator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/SnipeITLabelGenerator/config.py -------------------------------------------------------------------------------- /SnipeITLabelGenerator/mkinventorylabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/SnipeITLabelGenerator/mkinventorylabel.py -------------------------------------------------------------------------------- /mkassetlabel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/mkassetlabel.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextremblay/Snipe-IT-Label-Generator/HEAD/setup.py --------------------------------------------------------------------------------