bambu-printer-manager 0.5.3rc4__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.
- bambu_printer_manager-0.5.3rc4/LICENSE +13 -0
- bambu_printer_manager-0.5.3rc4/MANIFEST.in +1 -0
- bambu_printer_manager-0.5.3rc4/PKG-INFO +43 -0
- bambu_printer_manager-0.5.3rc4/README.md +21 -0
- bambu_printer_manager-0.5.3rc4/pyproject.toml +101 -0
- bambu_printer_manager-0.5.3rc4/setup.cfg +4 -0
- bambu_printer_manager-0.5.3rc4/src/bambu_printer_manager.egg-info/PKG-INFO +43 -0
- bambu_printer_manager-0.5.3rc4/src/bambu_printer_manager.egg-info/SOURCES.txt +17 -0
- bambu_printer_manager-0.5.3rc4/src/bambu_printer_manager.egg-info/dependency_links.txt +1 -0
- bambu_printer_manager-0.5.3rc4/src/bambu_printer_manager.egg-info/requires.txt +11 -0
- bambu_printer_manager-0.5.3rc4/src/bambu_printer_manager.egg-info/top_level.txt +1 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/__init__.py +7 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/bambucommands.py +18450 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/bambuconfig.py +256 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/bambuprinter.py +1620 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/bambuspool.py +132 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/bambutools.py +296 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/ftpsclient/__init__.py +1 -0
- bambu_printer_manager-0.5.3rc4/src/bpm/ftpsclient/ftpsclient.py +297 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
2
|
+
Version 2, December 2004
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
|
5
|
+
|
|
6
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
|
7
|
+
copies of this license document, and changing it is allowed as long
|
|
8
|
+
as the name is changed.
|
|
9
|
+
|
|
10
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
11
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
12
|
+
|
|
13
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
graft bpm
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: bambu-printer-manager
|
|
3
|
+
Version: 0.5.3rc4
|
|
4
|
+
Summary: A pure python library for managing Bambu Labs printers
|
|
5
|
+
Author-email: "Shell M. Shrader" <shell@shellware.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/synman/bambu-printer-manager
|
|
7
|
+
Project-URL: Documentation, https://synman.github.io/bambu-printer-manager/
|
|
8
|
+
Project-URL: Issues, https://github.com/synman/bambu-printer-manager/issues
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: Freely Distributable
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: webcolors
|
|
16
|
+
Requires-Dist: paho-mqtt
|
|
17
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
18
|
+
Provides-Extra: develop
|
|
19
|
+
Requires-Dist: pre-commit; extra == "develop"
|
|
20
|
+
Provides-Extra: docs
|
|
21
|
+
Requires-Dist: mkdocstrings[python]>=0.18; extra == "docs"
|
|
22
|
+
|
|
23
|
+
[](https://badge.fury.io/py/bambu-printer-manager)
|
|
24
|
+
|
|
25
|
+
## bambu-printer-manager is an all in one pure python wrapper for interacting with and managing Bambu Lab printers.
|
|
26
|
+
|
|
27
|
+
### Documentation
|
|
28
|
+
All documentation for `bambu-printer-manager` can be found [here](https://synman.github.io/bambu-printer-manager/).
|
|
29
|
+
|
|
30
|
+
### Need Help?
|
|
31
|
+
Open an issue, [here](https://github.com/synman/bambu-printer-manager/issues).
|
|
32
|
+
|
|
33
|
+
### Want to Contribute?
|
|
34
|
+
The best way you can contribute to this project is to make a monetary donation to its author. All funds received will go to the purchase of Bambu Lab hardware to support the continued development of this project. Please show your support by becoming a [Sponsor](https://github.com/sponsors/synman) today!
|
|
35
|
+
|
|
36
|
+
Developers are encouraged to submit a Pull Request to [devel](https://github.com/synman/bambu-printer-manager/compare)!
|
|
37
|
+
|
|
38
|
+
Please make sure to install pre-commit and lint and format your contributions through it:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
pip install .[develop]
|
|
42
|
+
pre-commit install
|
|
43
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[](https://badge.fury.io/py/bambu-printer-manager)
|
|
2
|
+
|
|
3
|
+
## bambu-printer-manager is an all in one pure python wrapper for interacting with and managing Bambu Lab printers.
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
All documentation for `bambu-printer-manager` can be found [here](https://synman.github.io/bambu-printer-manager/).
|
|
7
|
+
|
|
8
|
+
### Need Help?
|
|
9
|
+
Open an issue, [here](https://github.com/synman/bambu-printer-manager/issues).
|
|
10
|
+
|
|
11
|
+
### Want to Contribute?
|
|
12
|
+
The best way you can contribute to this project is to make a monetary donation to its author. All funds received will go to the purchase of Bambu Lab hardware to support the continued development of this project. Please show your support by becoming a [Sponsor](https://github.com/sponsors/synman) today!
|
|
13
|
+
|
|
14
|
+
Developers are encouraged to submit a Pull Request to [devel](https://github.com/synman/bambu-printer-manager/compare)!
|
|
15
|
+
|
|
16
|
+
Please make sure to install pre-commit and lint and format your contributions through it:
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
pip install .[develop]
|
|
20
|
+
pre-commit install
|
|
21
|
+
```
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
# requires = ["setuptools"]
|
|
3
|
+
requires = ["setuptools == 76.1.0"]
|
|
4
|
+
build-backend = "setuptools.build_meta"
|
|
5
|
+
|
|
6
|
+
[tool.setuptools.packages.find]
|
|
7
|
+
where = ["src/"]
|
|
8
|
+
exclude = ["bpm/ftpsclient"]
|
|
9
|
+
|
|
10
|
+
[tool.setuptools.package-data]
|
|
11
|
+
"bpm" = ["*.json"]
|
|
12
|
+
|
|
13
|
+
[project]
|
|
14
|
+
name = "bambu-printer-manager"
|
|
15
|
+
version = "0.5.3rc4"
|
|
16
|
+
authors = [
|
|
17
|
+
{ name="Shell M. Shrader", email="shell@shellware.com" },
|
|
18
|
+
]
|
|
19
|
+
description = "A pure python library for managing Bambu Labs printers"
|
|
20
|
+
readme = "README.md"
|
|
21
|
+
requires-python = ">=3.11"
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"License :: Freely Distributable",
|
|
25
|
+
"Operating System :: OS Independent",
|
|
26
|
+
]
|
|
27
|
+
dependencies = [
|
|
28
|
+
"webcolors",
|
|
29
|
+
"paho-mqtt",
|
|
30
|
+
"typing-extensions ; python_version<'3.12'",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.optional-dependencies]
|
|
34
|
+
develop = [
|
|
35
|
+
"pre-commit",
|
|
36
|
+
]
|
|
37
|
+
docs = [
|
|
38
|
+
"mkdocstrings[python]>=0.18",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[project.urls]
|
|
42
|
+
Homepage = "https://github.com/synman/bambu-printer-manager"
|
|
43
|
+
Documentation = "https://synman.github.io/bambu-printer-manager/"
|
|
44
|
+
Issues = "https://github.com/synman/bambu-printer-manager/issues"
|
|
45
|
+
|
|
46
|
+
[tool.ruff]
|
|
47
|
+
exclude = [
|
|
48
|
+
# repo specific
|
|
49
|
+
"src/bpm/ftpsclient",
|
|
50
|
+
|
|
51
|
+
# standard stuff
|
|
52
|
+
".bzr",
|
|
53
|
+
".direnv",
|
|
54
|
+
".eggs",
|
|
55
|
+
".git",
|
|
56
|
+
".git-rewrite",
|
|
57
|
+
".hg",
|
|
58
|
+
".ipynb_checkpoints",
|
|
59
|
+
".mypy_cache",
|
|
60
|
+
".nox",
|
|
61
|
+
".pants.d",
|
|
62
|
+
".pyenv",
|
|
63
|
+
".pytest_cache",
|
|
64
|
+
".pytype",
|
|
65
|
+
".ruff_cache",
|
|
66
|
+
".svn",
|
|
67
|
+
".tox",
|
|
68
|
+
".venv",
|
|
69
|
+
".vscode",
|
|
70
|
+
"__pypackages__",
|
|
71
|
+
"_build",
|
|
72
|
+
"buck-out",
|
|
73
|
+
"build",
|
|
74
|
+
"dist",
|
|
75
|
+
"node_modules",
|
|
76
|
+
"site-packages",
|
|
77
|
+
"venv",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
line-length = 90
|
|
81
|
+
indent-width = 4
|
|
82
|
+
|
|
83
|
+
# Assume Python 3.11
|
|
84
|
+
target-version = "py311"
|
|
85
|
+
|
|
86
|
+
[tool.ruff.lint]
|
|
87
|
+
select = ["B", "C", "E", "F", "I", "W", "B9"]
|
|
88
|
+
ignore = [
|
|
89
|
+
"E501", # line too long
|
|
90
|
+
"E701", #
|
|
91
|
+
"C901", # method complexity
|
|
92
|
+
]
|
|
93
|
+
fixable = ["I", "C4", "E"]
|
|
94
|
+
|
|
95
|
+
# Allow unused variables when underscore-prefixed.
|
|
96
|
+
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
97
|
+
|
|
98
|
+
[tool.ruff.lint.isort]
|
|
99
|
+
known-first-party = [
|
|
100
|
+
"bmp",
|
|
101
|
+
]
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: bambu-printer-manager
|
|
3
|
+
Version: 0.5.3rc4
|
|
4
|
+
Summary: A pure python library for managing Bambu Labs printers
|
|
5
|
+
Author-email: "Shell M. Shrader" <shell@shellware.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/synman/bambu-printer-manager
|
|
7
|
+
Project-URL: Documentation, https://synman.github.io/bambu-printer-manager/
|
|
8
|
+
Project-URL: Issues, https://github.com/synman/bambu-printer-manager/issues
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: Freely Distributable
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: webcolors
|
|
16
|
+
Requires-Dist: paho-mqtt
|
|
17
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
18
|
+
Provides-Extra: develop
|
|
19
|
+
Requires-Dist: pre-commit; extra == "develop"
|
|
20
|
+
Provides-Extra: docs
|
|
21
|
+
Requires-Dist: mkdocstrings[python]>=0.18; extra == "docs"
|
|
22
|
+
|
|
23
|
+
[](https://badge.fury.io/py/bambu-printer-manager)
|
|
24
|
+
|
|
25
|
+
## bambu-printer-manager is an all in one pure python wrapper for interacting with and managing Bambu Lab printers.
|
|
26
|
+
|
|
27
|
+
### Documentation
|
|
28
|
+
All documentation for `bambu-printer-manager` can be found [here](https://synman.github.io/bambu-printer-manager/).
|
|
29
|
+
|
|
30
|
+
### Need Help?
|
|
31
|
+
Open an issue, [here](https://github.com/synman/bambu-printer-manager/issues).
|
|
32
|
+
|
|
33
|
+
### Want to Contribute?
|
|
34
|
+
The best way you can contribute to this project is to make a monetary donation to its author. All funds received will go to the purchase of Bambu Lab hardware to support the continued development of this project. Please show your support by becoming a [Sponsor](https://github.com/sponsors/synman) today!
|
|
35
|
+
|
|
36
|
+
Developers are encouraged to submit a Pull Request to [devel](https://github.com/synman/bambu-printer-manager/compare)!
|
|
37
|
+
|
|
38
|
+
Please make sure to install pre-commit and lint and format your contributions through it:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
pip install .[develop]
|
|
42
|
+
pre-commit install
|
|
43
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
src/bambu_printer_manager.egg-info/PKG-INFO
|
|
6
|
+
src/bambu_printer_manager.egg-info/SOURCES.txt
|
|
7
|
+
src/bambu_printer_manager.egg-info/dependency_links.txt
|
|
8
|
+
src/bambu_printer_manager.egg-info/requires.txt
|
|
9
|
+
src/bambu_printer_manager.egg-info/top_level.txt
|
|
10
|
+
src/bpm/__init__.py
|
|
11
|
+
src/bpm/bambucommands.py
|
|
12
|
+
src/bpm/bambuconfig.py
|
|
13
|
+
src/bpm/bambuprinter.py
|
|
14
|
+
src/bpm/bambuspool.py
|
|
15
|
+
src/bpm/bambutools.py
|
|
16
|
+
src/bpm/ftpsclient/__init__.py
|
|
17
|
+
src/bpm/ftpsclient/ftpsclient.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bpm
|