├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── demos ├── Judson-Bold.ttf ├── KatamotzIkasi.ttf ├── background_colours.py ├── basic.py ├── names.txt ├── nametags.py ├── padding.py ├── page_background.py ├── page_background_1.png ├── page_background_2.png ├── partial_page.py ├── preview.py └── repeated.py ├── labels ├── __init__.py ├── sheet.py └── specifications.py ├── pypi.rst ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pypi.rst 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/README.md -------------------------------------------------------------------------------- /demos/Judson-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/Judson-Bold.ttf -------------------------------------------------------------------------------- /demos/KatamotzIkasi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/KatamotzIkasi.ttf -------------------------------------------------------------------------------- /demos/background_colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/background_colours.py -------------------------------------------------------------------------------- /demos/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/basic.py -------------------------------------------------------------------------------- /demos/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/names.txt -------------------------------------------------------------------------------- /demos/nametags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/nametags.py -------------------------------------------------------------------------------- /demos/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/padding.py -------------------------------------------------------------------------------- /demos/page_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/page_background.py -------------------------------------------------------------------------------- /demos/page_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/page_background_1.png -------------------------------------------------------------------------------- /demos/page_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/page_background_2.png -------------------------------------------------------------------------------- /demos/partial_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/partial_page.py -------------------------------------------------------------------------------- /demos/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/preview.py -------------------------------------------------------------------------------- /demos/repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/demos/repeated.py -------------------------------------------------------------------------------- /labels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/labels/__init__.py -------------------------------------------------------------------------------- /labels/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/labels/sheet.py -------------------------------------------------------------------------------- /labels/specifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/labels/specifications.py -------------------------------------------------------------------------------- /pypi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/pypi.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcbnz/pylabels/HEAD/setup.py --------------------------------------------------------------------------------