labelle 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. labelle-1.0.0/.github/dependabot.yml +8 -0
  2. labelle-1.0.0/.github/workflows/pypi-publish.yml +44 -0
  3. labelle-1.0.0/.github/workflows/tests.yml +27 -0
  4. labelle-1.0.0/.gitignore +84 -0
  5. labelle-1.0.0/.pre-commit-config.yaml +44 -0
  6. labelle-1.0.0/LICENSE +201 -0
  7. labelle-1.0.0/PKG-INFO +243 -0
  8. labelle-1.0.0/README.md +214 -0
  9. labelle-1.0.0/doc/Labelle_example_1.png +0 -0
  10. labelle-1.0.0/doc/Labelle_example_2.png +0 -0
  11. labelle-1.0.0/doc/Labelle_example_3.png +0 -0
  12. labelle-1.0.0/labelle.ini +6 -0
  13. labelle-1.0.0/labelle.png +0 -0
  14. labelle-1.0.0/pyproject.toml +129 -0
  15. labelle-1.0.0/src/__init__.py +0 -0
  16. labelle-1.0.0/src/labelle/__init__.py +4 -0
  17. labelle-1.0.0/src/labelle/_version.py +16 -0
  18. labelle-1.0.0/src/labelle/barcode_writer.py +108 -0
  19. labelle-1.0.0/src/labelle/command_line.py +265 -0
  20. labelle-1.0.0/src/labelle/constants.py +97 -0
  21. labelle-1.0.0/src/labelle/detect.py +214 -0
  22. labelle-1.0.0/src/labelle/dymo_print_engines.py +360 -0
  23. labelle-1.0.0/src/labelle/font_config.py +46 -0
  24. labelle-1.0.0/src/labelle/gui.py +179 -0
  25. labelle-1.0.0/src/labelle/labeler.py +223 -0
  26. labelle-1.0.0/src/labelle/metadata.py +10 -0
  27. labelle-1.0.0/src/labelle/q_dymo_label_widgets.py +424 -0
  28. labelle-1.0.0/src/labelle/q_dymo_labels_list.py +150 -0
  29. labelle-1.0.0/src/labelle/resources/fonts/Carlito-Bold.ttf +0 -0
  30. labelle-1.0.0/src/labelle/resources/fonts/Carlito-BoldItalic.ttf +0 -0
  31. labelle-1.0.0/src/labelle/resources/fonts/Carlito-Italic.ttf +0 -0
  32. labelle-1.0.0/src/labelle/resources/fonts/Carlito-Regular.ttf +0 -0
  33. labelle-1.0.0/src/labelle/resources/fonts/LICENSE +94 -0
  34. labelle-1.0.0/src/labelle/resources/fonts/__init__.py +0 -0
  35. labelle-1.0.0/src/labelle/resources/icons/__init__.py +0 -0
  36. labelle-1.0.0/src/labelle/resources/icons/barcode_icon.png +0 -0
  37. labelle-1.0.0/src/labelle/resources/icons/barcode_text_icon.png +0 -0
  38. labelle-1.0.0/src/labelle/resources/icons/img_icon.png +0 -0
  39. labelle-1.0.0/src/labelle/resources/icons/logo_small.png +0 -0
  40. labelle-1.0.0/src/labelle/resources/icons/qr_icon.png +0 -0
  41. labelle-1.0.0/src/labelle/resources/icons/txt_icon.png +0 -0
  42. labelle-1.0.0/src/labelle/unicode_blocks.py +42 -0
  43. labelle-1.0.0/src/labelle/utils.py +37 -0
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+
4
+ # <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions>
5
+ - package-ecosystem: github-actions
6
+ directory: /
7
+ schedule:
8
+ interval: monthly
@@ -0,0 +1,44 @@
1
+ name: Upload Python Package
2
+
3
+ on:
4
+ release:
5
+ types: [created]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: '3.x'
19
+ - name: Build
20
+ run: |
21
+ python -m pip install --upgrade pip build twine
22
+ python -m build
23
+ - name: Test wheels
24
+ run: |
25
+ python -m twine check dist/*
26
+ - name: Upload dist files for publication
27
+ uses: actions/upload-artifact@v2
28
+ with:
29
+ name: dist-files
30
+ path: dist
31
+ publish:
32
+ runs-on: ubuntu-latest
33
+ needs: build
34
+ # Run this job in an isolated GHA environment containing the OIDC credentials.
35
+ environment: release
36
+ permissions:
37
+ id-token: write
38
+ steps:
39
+ - uses: actions/download-artifact@v2
40
+ with:
41
+ name: dist-files
42
+ path: dist
43
+ - name: Publish
44
+ uses: pypa/gh-action-pypi-publish@v1.8.14
@@ -0,0 +1,27 @@
1
+ name: Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
14
+ fail-fast: false
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Set up Python ${{ matrix.python-version }}
19
+ uses: actions/setup-python@v4
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install tox tox-gh-actions
26
+ - name: Test with tox
27
+ run: tox
@@ -0,0 +1,84 @@
1
+ # Distribution / packaging
2
+ .Python
3
+ env/
4
+ bin/
5
+ lib/
6
+ lib64/
7
+ parts/
8
+ var/
9
+
10
+ # Installer logs
11
+ pip-log.txt
12
+ pip-delete-this-directory.txt
13
+
14
+ # Unit test / coverage reports
15
+ nosetests.xml
16
+
17
+ # Translations
18
+ *.mo
19
+
20
+ # Mr Developer
21
+ .mr.developer.cfg
22
+
23
+ *.bak
24
+ *.org
25
+
26
+ /.vscode/
27
+ /venv*/
28
+
29
+ # Temporary and binary files
30
+ *~
31
+ *.py[cod]
32
+ *.so
33
+ *.cfg
34
+ !.isort.cfg
35
+ !setup.cfg
36
+ *.orig
37
+ *.log
38
+ *.pot
39
+ __pycache__/*
40
+ .cache/*
41
+ .*.swp
42
+ */.ipynb_checkpoints/*
43
+ .DS_Store
44
+
45
+ # Project files
46
+ .ropeproject
47
+ .project
48
+ .pydevproject
49
+ .settings
50
+ .idea
51
+ .vscode
52
+ tags
53
+
54
+ # Package files
55
+ *.egg
56
+ *.eggs/
57
+ .installed.cfg
58
+ *.egg-info
59
+
60
+ # Unittest and coverage
61
+ htmlcov/*
62
+ .coverage
63
+ .coverage.*
64
+ .tox
65
+ junit*.xml
66
+ coverage.xml
67
+ .pytest_cache/
68
+
69
+ # Build and docs folder/files
70
+ build/*
71
+ dist/*
72
+ sdist/*
73
+ docs/api/*
74
+ docs/_rst/*
75
+ docs/_build/*
76
+ cover/*
77
+ MANIFEST
78
+
79
+ # Per-project virtualenvs
80
+ .venv*/
81
+ .conda*/
82
+
83
+ # setuptools_scm
84
+ src/labelle/_version.py
@@ -0,0 +1,44 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v4.5.0
4
+ hooks:
5
+ - id: no-commit-to-branch
6
+ args: [--branch, master, --branch, main]
7
+ - id: trailing-whitespace
8
+ - id: check-added-large-files
9
+ - id: check-ast
10
+ - id: check-json
11
+ - id: check-merge-conflict
12
+ - id: check-xml
13
+ - id: check-yaml
14
+ - id: debug-statements
15
+ - id: end-of-file-fixer
16
+ - id: requirements-txt-fixer
17
+ - id: mixed-line-ending
18
+ args: ['--fix=lf']
19
+
20
+ - repo: https://github.com/asottile/pyupgrade
21
+ rev: v3.15.0
22
+ hooks:
23
+ - id: pyupgrade
24
+ args: ["--py38-plus", "--keep-runtime-typing"]
25
+
26
+ - repo: https://github.com/pycqa/isort
27
+ rev: 5.12.0
28
+ hooks:
29
+ - id: isort
30
+ args: ["--settings-path=pyproject.toml"]
31
+
32
+ - repo: https://github.com/psf/black
33
+ rev: 23.11.0
34
+ hooks:
35
+ - id: black
36
+ language_version: python3
37
+
38
+ - repo: https://github.com/pycqa/flake8
39
+ rev: 6.1.0
40
+ hooks:
41
+ - id: flake8
42
+ args:
43
+ - --max-line-length=88 # default of Black
44
+ - --extend-ignore=E203 # conflicts with Black
labelle-1.0.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
labelle-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,243 @@
1
+ Metadata-Version: 2.3
2
+ Name: labelle
3
+ Version: 1.0.0
4
+ Summary: Open-source label printing software
5
+ Project-URL: Homepage, https://github.com/labelle-org/labelle
6
+ Project-URL: source, https://github.com/labelle-org/labelle
7
+ Project-URL: tracker, https://github.com/labelle-org/labelle/issues
8
+ Author-email: "Sebastian J. Bronner" <waschtl@sbronner.com>
9
+ Maintainer-email: Tomer Shalev <tshalev@proofpoint.com>, Ben Mares <services-labelle@tensorial.com>, Tomek Szczęsny <mctom@tlen.pl>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Printing
20
+ Requires-Python: <4,>=3.8
21
+ Requires-Dist: appdirs
22
+ Requires-Dist: importlib-metadata; python_version < '3.8'
23
+ Requires-Dist: pillow<11,>=8.1.2
24
+ Requires-Dist: pyqrcode<2,>=1.2.1
25
+ Requires-Dist: pyqt6
26
+ Requires-Dist: python-barcode<1,>=0.13.1
27
+ Requires-Dist: pyusb
28
+ Description-Content-Type: text/markdown
29
+
30
+ # Labelle
31
+
32
+ [![GitHub Actions (Tests)](https://github.com/labelle-org/labelle/workflows/Tests/badge.svg)](https://github.com/labelle-org/labelle)
33
+ [![PyPI version](https://img.shields.io/pypi/v/labelle.svg)](https://pypi.org/project/labelle/)
34
+
35
+ <p align="center">
36
+ <img src="labelle.png" alt="logo" width="400"></img><br>
37
+ </p>
38
+
39
+ ## Open-source label printing software
40
+
41
+ * First version from Sebastian Bronner: <https://sbronner.com/dymoprint.html>
42
+ * Cloned to Github and formerly maintained by @computerlyrik and @maresb: <https://github.com/computerlyrik/dymoprint>
43
+ * Migrated to <https://github.com/labelle-org/labelle> and maintained by @tomers, @maresb, and @tomek-szczesny
44
+
45
+ ## Features
46
+
47
+ * Text printing
48
+ * QR code printing
49
+ * Barcode printing
50
+ * Image printing
51
+ * Combinations of the above
52
+ * GUI Application based on PyQt6
53
+ * Windows support by setting the driver to WinUSB using [Zadig](https://zadig.akeo.ie/)
54
+
55
+ ### Supported devices
56
+
57
+ * DYMO LabelManager PC
58
+ * DYMO LabelPoint 350
59
+ * DYMO LabelManager 280
60
+ * DYMO LabelManager 420P
61
+ * DYMO LabelManager Wireless PnP
62
+
63
+ Labelle is not affiliated with DYMO. Please see the [disclaimer](#disclaimers) below.
64
+
65
+ For more information about experimental device support, see [#44](https://github.com/computerlyrik/dymoprint/issues/44).
66
+
67
+ ## Installation
68
+
69
+ It is recommended to install Labelle with [pipx](https://pypa.github.io/pipx/) so that it runs in an isolated virtual environment:
70
+
71
+ ```bash
72
+ pipx install labelle
73
+ ```
74
+
75
+ In case pipx is not already installed, it can be installed on Ubuntu/Debian with
76
+
77
+ ```bash
78
+ sudo apt-get install pipx
79
+ ```
80
+
81
+ or on Arch with
82
+
83
+ ```bash
84
+ sudo pacman -S python-pipx
85
+ ```
86
+
87
+ By default, users don't have permission to access generic USB devices, so you will
88
+ need to add a rule. The first time you run `labelle`, it will give instructions
89
+ about how to do this:
90
+
91
+ ```bash
92
+ $ labelle "Hello world"
93
+ ...
94
+ You do not have sufficient access to the device. You probably want to add the a udev rule in /etc/udev/rules.d with the following command:
95
+
96
+ echo 'ACTION=="add", SUBSYSTEMS=="usb", ATTRS{idVendor}=="0922", ATTRS{idProduct}=="1001", MODE="0666"' | sudo tee /etc/udev/rules.d/91-labelle-1001.rules
97
+ ...
98
+ ```
99
+
100
+ ## Testing experimental features
101
+
102
+ To install a test branch, by GitHub user `ghuser` for the branch `branchname`, run
103
+
104
+ ```bash
105
+ pipx install --force git+https://github.com/ghuser/labelle@branchname
106
+ ```
107
+
108
+ To revert back to the release version, run
109
+
110
+ ```bash
111
+ pipx install --force labelle
112
+ ```
113
+
114
+ To install a particular release version, specify `labelle==x.y.z` in place of `labelle` in the above command.
115
+
116
+ ## Development
117
+
118
+ To install for development, fork and clone this repository, and run (ideally within a venv):
119
+
120
+ ```bash
121
+ pip install --editable .
122
+ ```
123
+
124
+ This project uses [pre-commit](https://pre-commit.com/) to run some checks before committing.
125
+ After installing the `pre-commit` executable, please run
126
+
127
+ ```bash
128
+ pre-commit install
129
+ ```
130
+
131
+ ## Font management
132
+
133
+ Fonts are managed via [labelle.ini](labelle.ini). This should be placed in your
134
+ config folder (normally `~/.config`). An example file is provided here.
135
+
136
+ You may choose any TTF Font you like
137
+
138
+ You may edit the file to point to your favorite font.
139
+
140
+ For my Arch-Linux System, fonts are located at e.g.
141
+
142
+ ```bash
143
+ /usr/share/fonts/TTF/DejaVuSerif.ttf
144
+ ```
145
+
146
+ It is also possible to Download a font from
147
+ <http://font.ubuntu.com/> and use it.
148
+
149
+ ## Modes
150
+
151
+ ### Print text
152
+
153
+ ```labelle MyText```
154
+
155
+ Multilines will be generated on whitespace
156
+
157
+ ```labelle MyLine MySecondLine # Will print two Lines```
158
+
159
+ If you want whitespaces just enclose in " "
160
+
161
+ ```labelle "prints a single line"```
162
+
163
+ ### Print QRCodes and Barcodes
164
+
165
+ ```labelle --help```
166
+
167
+ ### Print Codes and Text
168
+
169
+ Just add a text after your qr or barcode text
170
+
171
+ ```labelle -qr "QR Content" "Cleartext printed"```
172
+
173
+ ### Picture printing
174
+
175
+ Any picture with JPEG standard may be printed. Beware it will be downsized to tape.
176
+
177
+ ```labelle -p mypic.jpg ""```
178
+
179
+ Take care of the trailing "" - you may enter text here which gets printed in front of the image
180
+
181
+ ## GUI
182
+
183
+ ### Run Labelle GUI
184
+
185
+ ```labelle-gui```
186
+
187
+ #### GUI Features
188
+
189
+ * Live preview
190
+ * margin settings
191
+ * type size selector
192
+ * visualization of tape color schema
193
+ * the ability to freely arrange the content using the "Node" list
194
+ * Text Node:
195
+ * payload text - can be multi-line
196
+ * font selector
197
+ * font scaling - the percentage of line-height
198
+ * frame border width steering
199
+ * Qr Node:
200
+ * payload text
201
+ * BarCode Node:
202
+ * payload text
203
+ * codding selector
204
+ * Image Node:
205
+ * path to file
206
+
207
+ Nodes can be freely arranged, simply drag&drop rows on the list.
208
+ To add or delete the node from the label - right-click on the list and select the action from the context menu.
209
+ To print - click the print button.
210
+
211
+ ### Example
212
+
213
+ Example 1: multiple text + QR code
214
+
215
+ ![alt](doc/Labelle_example_1.png)
216
+
217
+ Example 2: two images + text with frame, white on red
218
+
219
+ ![alt](doc/Labelle_example_2.png)
220
+
221
+ Example 3: barcode with text, text, image
222
+
223
+ ![alt](doc/Labelle_example_3.png)
224
+
225
+ ## About the name
226
+
227
+ The name "Labelle" is a multilingual pun by [@claui](https://github.com/computerlyrik/dymoprint/issues/114#issuecomment-1978982019).
228
+
229
+ | Language | Word/Interpretation | Meaning | Pronunciation (IPA) | Simplified Phonetic Spelling |
230
+ |----------|-----------------------|-------------------|---------------------|------------------------------|
231
+ | English | Label | A printed sticker | /ˈleɪbəl/ | LAY-buhl |
232
+ | French | La belle | The beautiful | /la bɛl/ | lah BEL |
233
+ | German | Libelle (sounds like) | Dragonfly | /liˈbɛlə/ | lee-BELL-uh |
234
+
235
+ ## Disclaimers
236
+
237
+ * This software is provided as-is, without any warranty. Please see [LICENSE](LICENSE) for details.
238
+ * Labelle is not affiliated, associated, authorized, endorsed by, or in any way
239
+ officially connected with DYMO Corporation, or any of its subsidiaries or its
240
+ affiliates. The official DYMO website can be found at <www.dymo.com>. The name DYMO®,
241
+ as well as related names, marks, emblems, and images, are registered trademarks of
242
+ their respective owners. Currently, Labelle software is designed to support certain
243
+ devices manufactured by DYMO; however, no endorsement or partnership is implied.