cmdbox 0.5.1.2__py3-none-any.whl → 0.5.2__py3-none-any.whl
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.
Potentially problematic release.
This version of cmdbox might be problematic. Click here for more details.
- cmdbox/app/app.py +4 -2
- cmdbox/app/auth/signin.py +633 -631
- cmdbox/app/client.py +10 -10
- cmdbox/app/common.py +50 -6
- cmdbox/app/commons/convert.py +9 -0
- cmdbox/app/commons/module.py +113 -113
- cmdbox/app/commons/redis_client.py +40 -29
- cmdbox/app/edge.py +4 -4
- cmdbox/app/features/cli/audit_base.py +135 -0
- cmdbox/app/features/cli/cmdbox_audit_createdb.py +224 -0
- cmdbox/app/features/cli/cmdbox_audit_delete.py +299 -0
- cmdbox/app/features/cli/cmdbox_audit_search.py +350 -0
- cmdbox/app/features/cli/cmdbox_audit_write.py +240 -0
- cmdbox/app/features/cli/cmdbox_client_file_copy.py +207 -207
- cmdbox/app/features/cli/cmdbox_client_file_download.py +207 -207
- cmdbox/app/features/cli/cmdbox_client_file_list.py +193 -193
- cmdbox/app/features/cli/cmdbox_client_file_mkdir.py +191 -191
- cmdbox/app/features/cli/cmdbox_client_file_move.py +199 -199
- cmdbox/app/features/cli/cmdbox_client_file_remove.py +190 -190
- cmdbox/app/features/cli/cmdbox_client_file_rmdir.py +190 -190
- cmdbox/app/features/cli/cmdbox_client_file_upload.py +212 -212
- cmdbox/app/features/cli/cmdbox_client_server_info.py +166 -166
- cmdbox/app/features/cli/cmdbox_server_list.py +88 -88
- cmdbox/app/features/cli/cmdbox_server_stop.py +138 -138
- cmdbox/app/features/web/cmdbox_web_del_cmd.py +2 -0
- cmdbox/app/features/web/cmdbox_web_del_pipe.py +1 -0
- cmdbox/app/features/web/cmdbox_web_do_signin.py +12 -2
- cmdbox/app/features/web/cmdbox_web_do_signout.py +1 -0
- cmdbox/app/features/web/cmdbox_web_exec_cmd.py +25 -1
- cmdbox/app/features/web/cmdbox_web_exec_pipe.py +1 -0
- cmdbox/app/features/web/cmdbox_web_filer download.py +43 -42
- cmdbox/app/features/web/cmdbox_web_filer.py +1 -0
- cmdbox/app/features/web/cmdbox_web_filer_upload.py +65 -64
- cmdbox/app/features/web/cmdbox_web_gui.py +166 -165
- cmdbox/app/features/web/cmdbox_web_load_pin.py +43 -43
- cmdbox/app/features/web/cmdbox_web_raw_pipe.py +87 -87
- cmdbox/app/features/web/cmdbox_web_save_cmd.py +1 -0
- cmdbox/app/features/web/cmdbox_web_save_pin.py +42 -42
- cmdbox/app/features/web/cmdbox_web_save_pipe.py +1 -0
- cmdbox/app/features/web/cmdbox_web_users.py +12 -0
- cmdbox/app/options.py +767 -601
- cmdbox/extensions/features.yml +20 -0
- cmdbox/extensions/sample_project/sample/app/features/cli/sample_client_time.py +82 -82
- cmdbox/extensions/sample_project/sample/app/features/cli/sample_server_time.py +145 -145
- cmdbox/licenses/{LICENSE.Sphinx.8.1.3(BSD License).txt → LICENSE.Sphinx.8.2.3(UNKNOWN).txt} +1 -1
- cmdbox/licenses/{LICENSE.babel.2.16.0(BSD License).txt → LICENSE.babel.2.17.0(BSD License).txt } +1 -1
- cmdbox/licenses/{LICENSE.pkginfo.1.10.0(MIT License).txt → LICENSE.charset-normalizer.3.4.1(MIT License).txt } +1 -1
- cmdbox/licenses/LICENSE.gunicorn.23.0.0(MIT License).txt +23 -0
- cmdbox/licenses/LICENSE.importlib_metadata.8.6.1(Apache Software License).txt +202 -0
- cmdbox/licenses/LICENSE.nh3.0.2.21(MIT).txt +21 -0
- cmdbox/licenses/{LICENSE.pillow.11.0.0(CMU License (MIT-CMU)).txt → LICENSE.pillow.11.1.0(CMU License (MIT-CMU)).txt } +27 -40
- cmdbox/licenses/LICENSE.plyer.2.1.0(MIT License).txt +19 -0
- cmdbox/licenses/LICENSE.prompt_toolkit.3.0.50(BSD License).txt +27 -0
- cmdbox/licenses/LICENSE.psycopg-binary.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt +165 -0
- cmdbox/licenses/LICENSE.psycopg-pool.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt +165 -0
- cmdbox/licenses/LICENSE.psycopg.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt +165 -0
- cmdbox/licenses/LICENSE.pycryptodome.3.22.0(BSD License; Public Domain).txt +61 -0
- cmdbox/licenses/LICENSE.pystray.0.19.5(GNU Lesser General Public License v3 (LGPLv3)).txt +674 -0
- cmdbox/licenses/LICENSE.questionary.2.1.0(MIT License).txt +19 -0
- cmdbox/licenses/LICENSE.roman-numerals-py.3.1.0(CC0 1.0 Universal (CC0 1.0) Public Domain Dedication; Zero-Clause BSD (0BSD)).txt +146 -0
- cmdbox/licenses/{LICENSE.six.1.16.0(MIT License).txt → LICENSE.six.1.17.0(MIT License).txt } +1 -1
- cmdbox/licenses/{LICENSE.charset-normalizer.3.4.0(MIT License).txt → LICENSE.typing-inspection.0.4.0(MIT License).txt } +2 -2
- cmdbox/licenses/LICENSE.tzdata.2025.2(Apache Software License).txt +15 -0
- cmdbox/licenses/files.txt +48 -36
- cmdbox/logconf_audit.yml +30 -0
- cmdbox/logconf_cmdbox.yml +30 -0
- cmdbox/version.py +2 -2
- cmdbox/web/assets/cmdbox/color_mode.css +516 -0
- cmdbox/web/assets/cmdbox/common.js +19 -0
- cmdbox/web/assets/cmdbox/list_cmd.js +9 -10
- cmdbox/web/assets/cmdbox/main.js +2 -2
- cmdbox/web/assets/cmdbox/result.js +2 -2
- cmdbox/web/assets/cmdbox/signin.js +2 -2
- cmdbox/web/assets/cmdbox/users.js +2 -3
- cmdbox/web/assets/cmdbox/view_result.js +1 -1
- cmdbox/web/assets/filer/main.js +2 -2
- cmdbox/web/filer.html +16 -2
- cmdbox/web/gui.html +15 -1
- cmdbox/web/result.html +15 -1
- cmdbox/web/signin.html +35 -14
- cmdbox/web/users.html +15 -1
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/METADATA +25 -5
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/RECORD +116 -96
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/entry_points.txt +0 -1
- cmdbox/licenses/LICENSE.nh3.0.2.18(MIT).txt +0 -1
- /cmdbox/licenses/{LICENSE.Jinja2.3.1.4(BSD License).txt → LICENSE.Jinja2.3.1.6(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.Pygments.2.18.0(BSD License).txt → LICENSE.Pygments.2.19.1(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.anyio.4.6.2.post1(MIT License).txt → LICENSE.anyio.4.9.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.argcomplete.3.5.1(Apache Software License).txt → LICENSE.argcomplete.3.6.1(Apache Software License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.certifi.2024.8.30(Mozilla Public License 2.0 (MPL 2.0)).txt → LICENSE.certifi.2025.1.31(Mozilla Public License 2.0 (MPL 2.0)).txt} +0 -0
- /cmdbox/licenses/{LICENSE.click.8.1.7(BSD License).txt → LICENSE.click.8.1.8(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.cryptography.43.0.3(Apache Software License; BSD License).txt → LICENSE.cryptography.44.0.2(Apache Software License; BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.fastapi.0.115.5(MIT License).txt → LICENSE.fastapi.0.115.12(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.importlib_metadata.8.5.0(Apache Software License).txt → LICENSE.id.1.5.0(Apache Software License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.keyring.25.5.0(MIT License).txt → LICENSE.keyring.25.6.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.more-itertools.10.5.0(MIT License).txt → LICENSE.more-itertools.10.6.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.numpy.2.1.3(BSD License).txt → LICENSE.numpy.2.2.4(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.prettytable.3.12.0(BSD License).txt → LICENSE.prettytable.3.16.0(UNKNOWN).txt} +0 -0
- /cmdbox/licenses/{LICENSE.pydantic.2.10.2(MIT License).txt → LICENSE.pydantic.2.11.1(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.pydantic_core.2.27.1(MIT License).txt → LICENSE.pydantic_core.2.33.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.python-dotenv.1.0.1(BSD License).txt → LICENSE.python-dotenv.1.1.0(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.python-multipart.0.0.17(Apache Software License).txt → LICENSE.python-multipart.0.0.20(Apache Software License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.redis.5.2.0(MIT License).txt → LICENSE.redis.5.2.1(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.rich.13.9.4(MIT License).txt → LICENSE.rich.14.0.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.sphinx-intl.2.3.0(BSD License).txt → LICENSE.sphinx-intl.2.3.1(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.starlette.0.41.3(BSD License).txt → LICENSE.starlette.0.46.1(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.tomli.2.1.0(MIT License).txt → LICENSE.tomli.2.2.1(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.twine.5.1.1(Apache Software License).txt → LICENSE.twine.6.1.0(Apache Software License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.typing_extensions.4.12.2(Python Software Foundation License).txt → LICENSE.typing_extensions.4.13.0(UNKNOWN).txt} +0 -0
- /cmdbox/licenses/{LICENSE.urllib3.2.2.3(MIT License).txt → LICENSE.urllib3.2.3.0(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.uvicorn.0.32.1(BSD License).txt → LICENSE.uvicorn.0.34.0(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.watchfiles.1.0.0(MIT License).txt → LICENSE.watchfiles.1.0.4(MIT License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.websockets.14.1(BSD License).txt → LICENSE.websockets.15.0.1(BSD License).txt} +0 -0
- /cmdbox/licenses/{LICENSE.zope.interface.7.1.1(Zope Public License).txt → LICENSE.zope.interface.7.2(Zope Public License).txt} +0 -0
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/LICENSE +0 -0
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/WHEEL +0 -0
- {cmdbox-0.5.1.2.dist-info → cmdbox-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright 2020 Tom Bocklisch and contributors
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
=========
|
|
2
|
+
Licence
|
|
3
|
+
=========
|
|
4
|
+
|
|
5
|
+
This project is licenced under the terms of either the `Zero-Clause BSD licence`_
|
|
6
|
+
or the `CC0 1.0 Universal licence`_.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Zero-Clause BSD Licence
|
|
10
|
+
=======================
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2024, Adam Turner
|
|
13
|
+
|
|
14
|
+
Permission to use, copy, modify, and/or distribute this software for
|
|
15
|
+
any purpose with or without fee is hereby granted.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
|
|
18
|
+
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
19
|
+
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
|
|
20
|
+
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
|
|
21
|
+
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
|
22
|
+
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
23
|
+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
CC0 1.0 Universal licence
|
|
27
|
+
=========================
|
|
28
|
+
|
|
29
|
+
Statement of Purpose
|
|
30
|
+
--------------------
|
|
31
|
+
|
|
32
|
+
The laws of most jurisdictions throughout the world automatically confer
|
|
33
|
+
exclusive Copyright and Related Rights (defined below) upon the creator
|
|
34
|
+
and subsequent owner(s) (each and all, an "owner") of an original work of
|
|
35
|
+
authorship and/or a database (each, a "Work").
|
|
36
|
+
|
|
37
|
+
Certain owners wish to permanently relinquish those rights to a Work for
|
|
38
|
+
the purpose of contributing to a commons of creative, cultural and
|
|
39
|
+
scientific works ("Commons") that the public can reliably and without fear
|
|
40
|
+
of later claims of infringement build upon, modify, incorporate in other
|
|
41
|
+
works, reuse and redistribute as freely as possible in any form whatsoever
|
|
42
|
+
and for any purposes, including without limitation commercial purposes.
|
|
43
|
+
These owners may contribute to the Commons to promote the ideal of a free
|
|
44
|
+
culture and the further production of creative, cultural and scientific
|
|
45
|
+
works, or to gain reputation or greater distribution for their Work in
|
|
46
|
+
part through the use and efforts of others.
|
|
47
|
+
|
|
48
|
+
For these and/or other purposes and motivations, and without any
|
|
49
|
+
expectation of additional consideration or compensation, the person
|
|
50
|
+
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
|
51
|
+
is an owner of Copyright and Related Rights in the Work, voluntarily
|
|
52
|
+
elects to apply CC0 to the Work and publicly distribute the Work under its
|
|
53
|
+
terms, with knowledge of his or her Copyright and Related Rights in the
|
|
54
|
+
Work and the meaning and intended legal effect of CC0 on those rights.
|
|
55
|
+
|
|
56
|
+
1. Copyright and Related Rights.
|
|
57
|
+
--------------------------------
|
|
58
|
+
|
|
59
|
+
A Work made available under CC0 may be protected by copyright and related
|
|
60
|
+
or neighboring rights ("Copyright and Related Rights").
|
|
61
|
+
Copyright and Related Rights include, but are not limited to, the following:
|
|
62
|
+
|
|
63
|
+
i. the right to reproduce, adapt, distribute, perform, display,
|
|
64
|
+
communicate, and translate a Work;
|
|
65
|
+
ii. moral rights retained by the original author(s) and/or performer(s);
|
|
66
|
+
iii. publicity and privacy rights pertaining to a person's image or
|
|
67
|
+
likeness depicted in a Work;
|
|
68
|
+
iv. rights protecting against unfair competition in regards to a Work,
|
|
69
|
+
subject to the limitations in paragraph 4(a), below;
|
|
70
|
+
v. rights protecting the extraction, dissemination, use and reuse of data
|
|
71
|
+
in a Work;
|
|
72
|
+
vi. database rights (such as those arising under Directive 96/9/EC of the
|
|
73
|
+
European Parliament and of the Council of 11 March 1996 on the legal
|
|
74
|
+
protection of databases, and under any national implementation
|
|
75
|
+
thereof, including any amended or successor version of such
|
|
76
|
+
directive); and
|
|
77
|
+
vii. other similar, equivalent or corresponding rights throughout the
|
|
78
|
+
world based on applicable law or treaty, and any national
|
|
79
|
+
implementations thereof.
|
|
80
|
+
|
|
81
|
+
2. Waiver.
|
|
82
|
+
----------
|
|
83
|
+
|
|
84
|
+
To the greatest extent permitted by, but not in contravention
|
|
85
|
+
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
|
86
|
+
irrevocably and unconditionally waives, abandons, and surrenders all of
|
|
87
|
+
Affirmer's Copyright and Related Rights and associated claims and causes
|
|
88
|
+
of action, whether now known or unknown (including existing as well as
|
|
89
|
+
future claims and causes of action), in the Work (i) in all territories
|
|
90
|
+
worldwide, (ii) for the maximum duration provided by applicable law or
|
|
91
|
+
treaty (including future time extensions), (iii) in any current or future
|
|
92
|
+
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
|
93
|
+
including without limitation commercial, advertising or promotional
|
|
94
|
+
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
|
95
|
+
member of the public at large and to the detriment of Affirmer's heirs and
|
|
96
|
+
successors, fully intending that such Waiver shall not be subject to
|
|
97
|
+
revocation, rescission, cancellation, termination, or any other legal or
|
|
98
|
+
equitable action to disrupt the quiet enjoyment of the Work by the public
|
|
99
|
+
as contemplated by Affirmer's express Statement of Purpose.
|
|
100
|
+
|
|
101
|
+
3. Public License Fallback.
|
|
102
|
+
---------------------------
|
|
103
|
+
|
|
104
|
+
Should any part of the Waiver for any reason be judged legally invalid
|
|
105
|
+
or ineffective under applicable law, then the Waiver shall be preserved
|
|
106
|
+
to the maximum extent permitted taking into account Affirmer's express
|
|
107
|
+
Statement of Purpose. In addition, to the extent the Waiver is so judged
|
|
108
|
+
Affirmer hereby grants to each affected person a royalty-free,
|
|
109
|
+
non transferable, non sublicensable, non exclusive, irrevocable
|
|
110
|
+
and unconditional license to exercise Affirmer's Copyright and
|
|
111
|
+
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
|
112
|
+
maximum duration provided by applicable law or treaty (including future
|
|
113
|
+
time extensions), (iii) in any current or future medium and for any number
|
|
114
|
+
of copies, and (iv) for any purpose whatsoever, including without
|
|
115
|
+
limitation commercial, advertising or promotional purposes (the
|
|
116
|
+
"License"). The License shall be deemed effective as of the date CC0 was
|
|
117
|
+
applied by Affirmer to the Work. Should any part of the License for any
|
|
118
|
+
reason be judged legally invalid or ineffective under applicable law, such
|
|
119
|
+
partial invalidity or ineffectiveness shall not invalidate the remainder
|
|
120
|
+
of the License, and in such case Affirmer hereby affirms that he or she
|
|
121
|
+
will not (i) exercise any of his or her remaining Copyright and Related
|
|
122
|
+
Rights in the Work or (ii) assert any associated claims and causes of
|
|
123
|
+
action with respect to the Work, in either case contrary to Affirmer's
|
|
124
|
+
express Statement of Purpose.
|
|
125
|
+
|
|
126
|
+
4. Limitations and Disclaimers.
|
|
127
|
+
-------------------------------
|
|
128
|
+
|
|
129
|
+
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
|
130
|
+
surrendered, licensed or otherwise affected by this document.
|
|
131
|
+
b. Affirmer offers the Work as-is and makes no representations or
|
|
132
|
+
warranties of any kind concerning the Work, express, implied,
|
|
133
|
+
statutory or otherwise, including without limitation warranties of
|
|
134
|
+
title, merchantability, fitness for a particular purpose, non
|
|
135
|
+
infringement, or the absence of latent or other defects, accuracy, or
|
|
136
|
+
the present or absence of errors, whether or not discoverable, all to
|
|
137
|
+
the greatest extent permissible under applicable law.
|
|
138
|
+
c. Affirmer disclaims responsibility for clearing rights of other persons
|
|
139
|
+
that may apply to the Work or any use thereof, including without
|
|
140
|
+
limitation any person's Copyright and Related Rights in the Work.
|
|
141
|
+
Further, Affirmer disclaims responsibility for obtaining any necessary
|
|
142
|
+
consents, permissions or other rights required for any use of the
|
|
143
|
+
Work.
|
|
144
|
+
d. Affirmer understands and acknowledges that Creative Commons is not a
|
|
145
|
+
party to this document and has no duty or obligation with respect to
|
|
146
|
+
this CC0 or use of the Work.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Victorien
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Apache Software License 2.0
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020, Paul Ganssle (Google)
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
cmdbox/licenses/files.txt
CHANGED
|
@@ -1,62 +1,72 @@
|
|
|
1
1
|
Author License Name URL Version File
|
|
2
|
-
UNKNOWN BSD License Jinja2 https://github.com/pallets/jinja/ 3.1.
|
|
2
|
+
UNKNOWN BSD License Jinja2 https://github.com/pallets/jinja/ 3.1.6 cmdbox\licenses\LICENSE.Jinja2.3.1.6(BSD License).txt
|
|
3
3
|
UNKNOWN BSD License MarkupSafe https://github.com/pallets/markupsafe/ 3.0.2 cmdbox\licenses\LICENSE.MarkupSafe.3.0.2(BSD License).txt
|
|
4
4
|
Kirill Simonov MIT License PyYAML https://pyyaml.org/ 6.0.2 cmdbox\licenses\LICENSE.PyYAML.6.0.2(MIT License).txt
|
|
5
|
-
Georg Brandl <georg@python.org> BSD License Pygments https://pygments.org 2.
|
|
6
|
-
Georg Brandl <georg@python.org>
|
|
5
|
+
Georg Brandl <georg@python.org> BSD License Pygments https://pygments.org 2.19.1 cmdbox\licenses\LICENSE.Pygments.2.19.1(BSD License).txt
|
|
6
|
+
Adam Turner <aa-turner@users.noreply.github.com>, Georg Brandl <georg@python.org> UNKNOWN Sphinx https://www.sphinx-doc.org/ 8.2.3 cmdbox\licenses\LICENSE.Sphinx.8.2.3(UNKNOWN).txt
|
|
7
7
|
UNKNOWN BSD License alabaster https://alabaster.readthedocs.io/ 1.0.0 cmdbox\licenses\LICENSE.alabaster.1.0.0(BSD License).txt
|
|
8
8
|
Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin <s@muelcolvin.com>, Zac Hatfield-Dodds <zac@zhd.dev> MIT License annotated-types https://github.com/annotated-types/annotated-types 0.7.0 cmdbox\licenses\LICENSE.annotated-types.0.7.0(MIT License).txt
|
|
9
|
-
Alex Grönholm <alex.gronholm@nextday.fi> MIT License anyio https://anyio.readthedocs.io/en/stable/versionhistory.html 4.
|
|
10
|
-
Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.
|
|
11
|
-
Armin Ronacher BSD License babel https://babel.pocoo.org/ 2.
|
|
9
|
+
Alex Grönholm <alex.gronholm@nextday.fi> MIT License anyio https://anyio.readthedocs.io/en/stable/versionhistory.html 4.9.0 cmdbox\licenses\LICENSE.anyio.4.9.0(MIT License).txt
|
|
10
|
+
Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.6.1 cmdbox\licenses\LICENSE.argcomplete.3.6.1(Apache Software License).txt
|
|
11
|
+
Armin Ronacher BSD License babel https://babel.pocoo.org/ 2.17.0 cmdbox\licenses\LICENSE.babel.2.17.0(BSD License).txt
|
|
12
12
|
"Jason R. Coombs" <jaraco@jaraco.com> MIT License backports.tarfile https://github.com/jaraco/backports.tarfile 1.2.0 cmdbox\licenses\LICENSE.backports.tarfile.1.2.0(MIT License).txt
|
|
13
|
-
Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi
|
|
13
|
+
Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi 2025.1.31 cmdbox\licenses\LICENSE.certifi.2025.1.31(Mozilla Public License 2.0 (MPL 2.0)).txt
|
|
14
14
|
Armin Rigo, Maciej Fijalkowski MIT License cffi http://cffi.readthedocs.org 1.17.1 cmdbox\licenses\LICENSE.cffi.1.17.1(MIT License).txt
|
|
15
|
-
Ahmed TAHRI MIT License charset-normalizer https://github.com/
|
|
16
|
-
UNKNOWN BSD License click https://
|
|
15
|
+
"Ahmed R. TAHRI" <tahri.ahmed@proton.me> MIT License charset-normalizer https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md 3.4.1 cmdbox\licenses\LICENSE.charset-normalizer.3.4.1(MIT License).txt
|
|
16
|
+
UNKNOWN BSD License click https://github.com/pallets/click/ 8.1.8 cmdbox\licenses\LICENSE.click.8.1.8(BSD License).txt
|
|
17
17
|
Jonathan Hartley <tartley@tartley.com> BSD License colorama https://github.com/tartley/colorama 0.4.6 cmdbox\licenses\LICENSE.colorama.0.4.6(BSD License).txt
|
|
18
|
-
The cryptography developers <cryptography-dev@python.org> Apache Software License; BSD License cryptography https://github.com/pyca/cryptography
|
|
18
|
+
The cryptography developers <cryptography-dev@python.org> Apache Software License; BSD License cryptography https://github.com/pyca/cryptography 44.0.2 cmdbox\licenses\LICENSE.cryptography.44.0.2(Apache Software License; BSD License).txt
|
|
19
19
|
David Goodger <goodger@python.org> BSD License; GNU General Public License (GPL); Public Domain; Python Software Foundation License docutils https://docutils.sourceforge.io 0.21.2 cmdbox\licenses\LICENSE.docutils.0.21.2(BSD License; GNU General Public License (GPL); Public Domain; Python Software Foundation License).txt
|
|
20
|
-
=?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com> MIT License fastapi https://github.com/fastapi/fastapi 0.115.
|
|
20
|
+
=?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com> MIT License fastapi https://github.com/fastapi/fastapi 0.115.12 cmdbox\licenses\LICENSE.fastapi.0.115.12(MIT License).txt
|
|
21
21
|
Denis Bilenko MIT License gevent http://www.gevent.org/ 24.11.1 cmdbox\licenses\LICENSE.gevent.24.11.1(MIT License).txt
|
|
22
22
|
Alexey Borzenkov MIT License greenlet https://greenlet.readthedocs.io/ 3.1.1 cmdbox\licenses\LICENSE.greenlet.3.1.1(MIT License).txt
|
|
23
|
+
Benoit Chesneau <benoitc@gunicorn.org> MIT License gunicorn https://gunicorn.org 23.0.0 cmdbox\licenses\LICENSE.gunicorn.23.0.0(MIT License).txt
|
|
23
24
|
Nathaniel J. Smith MIT License h11 https://github.com/python-hyper/h11 0.14.0 cmdbox\licenses\LICENSE.h11.0.14.0(MIT License).txt
|
|
24
25
|
Yury Selivanov MIT License httptools https://github.com/MagicStack/httptools 0.6.4 cmdbox\licenses\LICENSE.httptools.0.6.4(MIT License).txt
|
|
26
|
+
UNKNOWN Apache Software License id https://pypi.org/project/id/ 1.5.0 cmdbox\licenses\LICENSE.id.1.5.0(Apache Software License).txt
|
|
25
27
|
Kim Davies <kim+pypi@gumleaf.org> BSD License idna https://github.com/kjd/idna 3.10 cmdbox\licenses\LICENSE.idna.3.10(BSD License).txt
|
|
26
28
|
Yoshiki Shibukawa MIT License imagesize https://github.com/shibukawa/imagesize_py 1.4.1 cmdbox\licenses\LICENSE.imagesize.1.4.1(MIT License).txt
|
|
27
|
-
"Jason R. Coombs" <jaraco@jaraco.com> Apache Software License importlib_metadata https://github.com/python/importlib_metadata 8.
|
|
29
|
+
"Jason R. Coombs" <jaraco@jaraco.com> Apache Software License importlib_metadata https://github.com/python/importlib_metadata 8.6.1 cmdbox\licenses\LICENSE.importlib_metadata.8.6.1(Apache Software License).txt
|
|
28
30
|
UNKNOWN BSD License itsdangerous https://github.com/pallets/itsdangerous/ 2.2.0 cmdbox\licenses\LICENSE.itsdangerous.2.2.0(BSD License).txt
|
|
29
31
|
Jason R. Coombs MIT License jaraco.classes https://github.com/jaraco/jaraco.classes 3.4.0 cmdbox\licenses\LICENSE.jaraco.classes.3.4.0(MIT License).txt
|
|
30
32
|
"Jason R. Coombs" <jaraco@jaraco.com> MIT License jaraco.context https://github.com/jaraco/jaraco.context 6.0.1 cmdbox\licenses\LICENSE.jaraco.context.6.0.1(MIT License).txt
|
|
31
33
|
"Jason R. Coombs" <jaraco@jaraco.com> MIT License jaraco.functools https://github.com/jaraco/jaraco.functools 4.1.0 cmdbox\licenses\LICENSE.jaraco.functools.4.1.0(MIT License).txt
|
|
32
|
-
Kang Zhang <jobo.zh@gmail.com> MIT License keyring https://github.com/jaraco/keyring 25.
|
|
34
|
+
Kang Zhang <jobo.zh@gmail.com> MIT License keyring https://github.com/jaraco/keyring 25.6.0 cmdbox\licenses\LICENSE.keyring.25.6.0(MIT License).txt
|
|
33
35
|
Chris Sewell <chrisj_sewell@hotmail.com> MIT License markdown-it-py https://github.com/executablebooks/markdown-it-py 3.0.0 cmdbox\licenses\LICENSE.markdown-it-py.3.0.0(MIT License).txt
|
|
34
36
|
Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License mdurl https://github.com/executablebooks/mdurl 0.1.2 cmdbox\licenses\LICENSE.mdurl.0.1.2(MIT License).txt
|
|
35
|
-
Erik Rose <erikrose@grinchcentral.com> MIT License more-itertools https://github.com/more-itertools/more-itertools 10.
|
|
36
|
-
messense <messense@icloud.com> MIT nh3 UNKNOWN 0.2.
|
|
37
|
-
Travis E. Oliphant et al. BSD License numpy https://numpy.org 2.
|
|
37
|
+
Erik Rose <erikrose@grinchcentral.com> MIT License more-itertools https://github.com/more-itertools/more-itertools 10.6.0 cmdbox\licenses\LICENSE.more-itertools.10.6.0(MIT License).txt
|
|
38
|
+
messense <messense@icloud.com> MIT nh3 UNKNOWN 0.2.21 cmdbox\licenses\LICENSE.nh3.0.2.21(MIT).txt
|
|
39
|
+
Travis E. Oliphant et al. BSD License numpy https://numpy.org 2.2.4 cmdbox\licenses\LICENSE.numpy.2.2.4(BSD License).txt
|
|
38
40
|
Donald Stufft <donald@stufft.io> Apache Software License; BSD License packaging https://github.com/pypa/packaging 24.2 cmdbox\licenses\LICENSE.packaging.24.2(Apache Software License; BSD License).txt
|
|
39
|
-
"Jeffrey A. Clark" <aclark@aclark.net> CMU License (MIT-CMU) pillow https://python-pillow.
|
|
41
|
+
"Jeffrey A. Clark" <aclark@aclark.net> CMU License (MIT-CMU) pillow https://python-pillow.github.io 11.1.0 cmdbox\licenses\LICENSE.pillow.11.1.0(CMU License (MIT-CMU)).txt
|
|
40
42
|
The pip developers <distutils-sig@python.org> MIT License pip https://pip.pypa.io/ 24.0 cmdbox\licenses\LICENSE.pip.24.0(MIT License).txt
|
|
41
|
-
|
|
42
|
-
Luke Maurits <luke@maurits.id.au>
|
|
43
|
+
Kivy team MIT License plyer https://plyer.readthedocs.org/en/latest/ 2.1.0 cmdbox\licenses\LICENSE.plyer.2.1.0(MIT License).txt
|
|
44
|
+
Luke Maurits <luke@maurits.id.au> UNKNOWN prettytable https://github.com/prettytable/prettytable 3.16.0 cmdbox\licenses\LICENSE.prettytable.3.16.0(UNKNOWN).txt
|
|
45
|
+
Jonathan Slenders BSD License prompt_toolkit https://github.com/prompt-toolkit/python-prompt-toolkit 3.0.50 cmdbox\licenses\LICENSE.prompt_toolkit.3.0.50(BSD License).txt
|
|
46
|
+
Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
|
|
47
|
+
Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg-binary https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg-binary.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
|
|
48
|
+
Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg-pool https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg-pool.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
|
|
43
49
|
Eli Bendersky BSD License pycparser https://github.com/eliben/pycparser 2.22 cmdbox\licenses\LICENSE.pycparser.2.22(BSD License).txt
|
|
44
|
-
|
|
45
|
-
Samuel Colvin <s@muelcolvin.com> MIT License
|
|
46
|
-
|
|
47
|
-
|
|
50
|
+
Helder Eijs BSD License; Public Domain pycryptodome https://www.pycryptodome.org 3.22.0 cmdbox\licenses\LICENSE.pycryptodome.3.22.0(BSD License; Public Domain).txt
|
|
51
|
+
Samuel Colvin <s@muelcolvin.com>, Eric Jolibois <em.jolibois@gmail.com>, Hasan Ramezani <hasan.r67@gmail.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey <terry@pydantic.dev>, David Montague <david@pydantic.dev>, Serge Matveenko <lig@countzero.co>, Marcelo Trylesinski <marcelotryle@gmail.com>, Sydney Runkle <sydneymarierunkle@gmail.com>, David Hewitt <mail@davidhewitt.io>, Alex Hall <alex.mojaki@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic https://github.com/pydantic/pydantic 2.11.1 cmdbox\licenses\LICENSE.pydantic.2.11.1(MIT License).txt
|
|
52
|
+
Samuel Colvin <s@muelcolvin.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, David Montague <david@pydantic.dev>, David Hewitt <mail@davidhewitt.dev>, Sydney Runkle <sydneymarierunkle@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic_core https://github.com/pydantic/pydantic-core 2.33.0 cmdbox\licenses\LICENSE.pydantic_core.2.33.0(MIT License).txt
|
|
53
|
+
Moses Palmér GNU Lesser General Public License v3 (LGPLv3) pystray https://github.com/moses-palmer/pystray 0.19.5 cmdbox\licenses\LICENSE.pystray.0.19.5(GNU Lesser General Public License v3 (LGPLv3)).txt
|
|
54
|
+
Saurabh Kumar BSD License python-dotenv https://github.com/theskumar/python-dotenv 1.1.0 cmdbox\licenses\LICENSE.python-dotenv.1.1.0(BSD License).txt
|
|
55
|
+
Andrew Dunham <andrew@du.nham.ca>, Marcelo Trylesinski <marcelotryle@gmail.com> Apache Software License python-multipart https://github.com/Kludex/python-multipart 0.0.20 cmdbox\licenses\LICENSE.python-multipart.0.0.20(Apache Software License).txt
|
|
48
56
|
Enthought Inc. BSD-3-Clause pywin32-ctypes https://github.com/enthought/pywin32-ctypes 0.2.3 cmdbox\licenses\LICENSE.pywin32-ctypes.0.2.3(BSD-3-Clause).txt
|
|
57
|
+
Tom Bocklisch MIT License questionary https://github.com/tmbo/questionary 2.1.0 cmdbox\licenses\LICENSE.questionary.2.1.0(MIT License).txt
|
|
49
58
|
The Python Packaging Authority <admin@mail.pypi.org> Apache Software License readme_renderer UNKNOWN 44.0 cmdbox\licenses\LICENSE.readme_renderer.44.0(Apache Software License).txt
|
|
50
|
-
Redis Inc. MIT License redis https://github.com/redis/redis-py 5.2.
|
|
59
|
+
Redis Inc. MIT License redis https://github.com/redis/redis-py 5.2.1 cmdbox\licenses\LICENSE.redis.5.2.1(MIT License).txt
|
|
51
60
|
Kenneth Reitz Apache Software License requests https://requests.readthedocs.io 2.32.3 cmdbox\licenses\LICENSE.requests.2.32.3(Apache Software License).txt
|
|
52
61
|
Ian Cordasco, Cory Benfield Apache Software License requests-toolbelt https://toolbelt.readthedocs.io/ 1.0.0 cmdbox\licenses\LICENSE.requests-toolbelt.1.0.0(Apache Software License).txt
|
|
53
62
|
Ian Stapleton Cordasco Apache Software License rfc3986 http://rfc3986.readthedocs.io 2.0.0 cmdbox\licenses\LICENSE.rfc3986.2.0.0(Apache Software License).txt
|
|
54
|
-
Will McGugan MIT License rich https://github.com/Textualize/rich
|
|
63
|
+
Will McGugan MIT License rich https://github.com/Textualize/rich 14.0.0 cmdbox\licenses\LICENSE.rich.14.0.0(MIT License).txt
|
|
64
|
+
Adam Turner CC0 1.0 Universal (CC0 1.0) Public Domain Dedication; Zero-Clause BSD (0BSD) roman-numerals-py https://github.com/AA-Turner/roman-numerals/blob/master/CHANGES.rst 3.1.0 cmdbox\licenses\LICENSE.roman-numerals-py.3.1.0(CC0 1.0 Universal (CC0 1.0) Public Domain Dedication; Zero-Clause BSD (0BSD)).txt
|
|
55
65
|
Python Packaging Authority MIT License setuptools https://github.com/pypa/setuptools 65.5.0 cmdbox\licenses\LICENSE.setuptools.65.5.0(MIT License).txt
|
|
56
|
-
Benjamin Peterson MIT License six https://github.com/benjaminp/six 1.
|
|
66
|
+
Benjamin Peterson MIT License six https://github.com/benjaminp/six 1.17.0 cmdbox\licenses\LICENSE.six.1.17.0(MIT License).txt
|
|
57
67
|
"Nathaniel J. Smith" <njs@pobox.com> Apache Software License; MIT License sniffio https://github.com/python-trio/sniffio 1.3.1 cmdbox\licenses\LICENSE.sniffio.1.3.1(Apache Software License; MIT License).txt
|
|
58
68
|
Snowball Developers BSD License snowballstemmer https://github.com/snowballstem/snowball 2.2.0 cmdbox\licenses\LICENSE.snowballstemmer.2.2.0(BSD License).txt
|
|
59
|
-
Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> BSD License sphinx-intl https://github.com/sphinx-doc/sphinx-intl 2.3.
|
|
69
|
+
Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> BSD License sphinx-intl https://github.com/sphinx-doc/sphinx-intl 2.3.1 cmdbox\licenses\LICENSE.sphinx-intl.2.3.1(BSD License).txt
|
|
60
70
|
Dave Snider, Read the Docs, Inc. & contributors MIT License sphinx-rtd-theme https://github.com/readthedocs/sphinx_rtd_theme 3.0.2 cmdbox\licenses\LICENSE.sphinx-rtd-theme.3.0.2(MIT License).txt
|
|
61
71
|
Jared Dillard <jared.dillard@gmail.com> MIT License sphinx-sitemap https://github.com/jdillard/sphinx-sitemap 2.6.0 cmdbox\licenses\LICENSE.sphinx-sitemap.2.6.0(MIT License).txt
|
|
62
72
|
Frテゥdテゥric Aoustin GNU General Public License v2 (GPLv2) sphinx_fontawesome https://github.com/fraoustin/sphinx_fontawesome 0.0.6 cmdbox\licenses\LICENSE.sphinx_fontawesome.0.0.6(GNU General Public License v2 (GPLv2)).txt
|
|
@@ -67,17 +77,19 @@ Adam Turner BSD License sphinxcontrib-jquery https://github.com/sphinx-contrib/j
|
|
|
67
77
|
Georg Brandl BSD License sphinxcontrib-jsmath http://sphinx-doc.org/ 1.0.1 cmdbox\licenses\LICENSE.sphinxcontrib-jsmath.1.0.1(BSD License).txt
|
|
68
78
|
Georg Brandl <georg@python.org> BSD License sphinxcontrib-qthelp https://www.sphinx-doc.org/ 2.0.0 cmdbox\licenses\LICENSE.sphinxcontrib-qthelp.2.0.0(BSD License).txt
|
|
69
79
|
Georg Brandl <georg@python.org> BSD License sphinxcontrib-serializinghtml https://www.sphinx-doc.org/ 2.0.0 cmdbox\licenses\LICENSE.sphinxcontrib-serializinghtml.2.0.0(BSD License).txt
|
|
70
|
-
Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.
|
|
80
|
+
Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.46.1 cmdbox\licenses\LICENSE.starlette.0.46.1(BSD License).txt
|
|
71
81
|
Sergey Astanin <s.astanin@gmail.com> MIT License tabulate https://github.com/astanin/python-tabulate 0.9.0 cmdbox\licenses\LICENSE.tabulate.0.9.0(MIT License).txt
|
|
72
|
-
Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License tomli https://github.com/hukkin/tomli 2.1
|
|
73
|
-
Donald Stufft and individual contributors <donald@stufft.io> Apache Software License twine https://twine.readthedocs.io/
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
82
|
+
Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License tomli https://github.com/hukkin/tomli 2.2.1 cmdbox\licenses\LICENSE.tomli.2.2.1(MIT License).txt
|
|
83
|
+
Donald Stufft and individual contributors <donald@stufft.io> Apache Software License twine https://twine.readthedocs.io/ 6.1.0 cmdbox\licenses\LICENSE.twine.6.1.0(Apache Software License).txt
|
|
84
|
+
Victorien Plot <contact@vctrn.dev> MIT License typing-inspection https://github.com/pydantic/typing-inspection 0.4.0 cmdbox\licenses\LICENSE.typing-inspection.0.4.0(MIT License).txt
|
|
85
|
+
"Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com> UNKNOWN typing_extensions https://github.com/python/typing_extensions 4.13.0 cmdbox\licenses\LICENSE.typing_extensions.4.13.0(UNKNOWN).txt
|
|
86
|
+
Python Software Foundation Apache Software License tzdata https://github.com/python/tzdata 2025.2 cmdbox\licenses\LICENSE.tzdata.2025.2(Apache Software License).txt
|
|
87
|
+
Andrey Petrov <andrey.petrov@shazow.net> MIT License urllib3 https://github.com/urllib3/urllib3/blob/main/CHANGES.rst 2.3.0 cmdbox\licenses\LICENSE.urllib3.2.3.0(MIT License).txt
|
|
88
|
+
Tom Christie <tom@tomchristie.com>, Marcelo Trylesinski <marcelotryle@gmail.com> BSD License uvicorn https://www.uvicorn.org/ 0.34.0 cmdbox\licenses\LICENSE.uvicorn.0.34.0(BSD License).txt
|
|
89
|
+
Samuel Colvin <s@muelcolvin.com> MIT License watchfiles https://github.com/samuelcolvin/watchfiles 1.0.4 cmdbox\licenses\LICENSE.watchfiles.1.0.4(MIT License).txt
|
|
78
90
|
Jeff Quast MIT License wcwidth https://github.com/jquast/wcwidth 0.2.13 cmdbox\licenses\LICENSE.wcwidth.0.2.13(MIT License).txt
|
|
79
|
-
Aymeric Augustin <aymeric.augustin@m4x.org> BSD License websockets https://github.com/python-websockets/websockets
|
|
91
|
+
Aymeric Augustin <aymeric.augustin@m4x.org> BSD License websockets https://github.com/python-websockets/websockets 15.0.1 cmdbox\licenses\LICENSE.websockets.15.0.1(BSD License).txt
|
|
80
92
|
Daniel Holth <dholth@fastmail.fm> MIT License wheel https://github.com/pypa/wheel 0.45.1 cmdbox\licenses\LICENSE.wheel.0.45.1(MIT License).txt
|
|
81
93
|
"Jason R. Coombs" <jaraco@jaraco.com> MIT License zipp https://github.com/jaraco/zipp 3.21.0 cmdbox\licenses\LICENSE.zipp.3.21.0(MIT License).txt
|
|
82
94
|
Zope Foundation and Contributors Zope Public License zope.event https://github.com/zopefoundation/zope.event 5.0 cmdbox\licenses\LICENSE.zope.event.5.0(Zope Public License).txt
|
|
83
|
-
Zope Foundation and Contributors Zope Public License zope.interface https://github.com/zopefoundation/zope.interface 7.
|
|
95
|
+
Zope Foundation and Contributors Zope Public License zope.interface https://github.com/zopefoundation/zope.interface 7.2 cmdbox\licenses\LICENSE.zope.interface.7.2(Zope Public License).txt
|
cmdbox/logconf_audit.yml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
|
|
3
|
+
formatters:
|
|
4
|
+
fmt:
|
|
5
|
+
format: '%(levelname)s[%(asctime)s] - %(message)s'
|
|
6
|
+
class: logging.Formatter
|
|
7
|
+
handlers:
|
|
8
|
+
std:
|
|
9
|
+
class: cmdbox.app.commons.loghandler.ColorfulStreamHandler
|
|
10
|
+
level: INFO
|
|
11
|
+
formatter: fmt
|
|
12
|
+
stream: ext://sys.stdout
|
|
13
|
+
audit:
|
|
14
|
+
class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
|
|
15
|
+
level: INFO
|
|
16
|
+
formatter: fmt
|
|
17
|
+
backupCount: 5
|
|
18
|
+
when : 'D'
|
|
19
|
+
encoding : 'utf-8'
|
|
20
|
+
filename: .logs/cmdbox_audit.log
|
|
21
|
+
|
|
22
|
+
loggers:
|
|
23
|
+
audit:
|
|
24
|
+
handlers: [audit]
|
|
25
|
+
level: INFO
|
|
26
|
+
qualname: audit
|
|
27
|
+
|
|
28
|
+
#root:
|
|
29
|
+
# handlers: [std]
|
|
30
|
+
# level: NOTSET
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
|
|
3
|
+
formatters:
|
|
4
|
+
fmt:
|
|
5
|
+
format: '%(levelname)s[%(asctime)s] - %(message)s'
|
|
6
|
+
class: logging.Formatter
|
|
7
|
+
handlers:
|
|
8
|
+
std:
|
|
9
|
+
class: cmdbox.app.commons.loghandler.ColorfulStreamHandler
|
|
10
|
+
level: INFO
|
|
11
|
+
formatter: fmt
|
|
12
|
+
stream: ext://sys.stdout
|
|
13
|
+
cmdbox:
|
|
14
|
+
class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
|
|
15
|
+
level: INFO
|
|
16
|
+
formatter: fmt
|
|
17
|
+
backupCount: 5
|
|
18
|
+
when : 'D'
|
|
19
|
+
encoding : 'utf-8'
|
|
20
|
+
filename: .logs/cmdbox.log
|
|
21
|
+
|
|
22
|
+
loggers:
|
|
23
|
+
cmdbox:
|
|
24
|
+
handlers: [cmdbox]
|
|
25
|
+
level: INFO
|
|
26
|
+
qualname: cmdbox
|
|
27
|
+
|
|
28
|
+
#root:
|
|
29
|
+
# handlers: [std]
|
|
30
|
+
# level: NOTSET
|
cmdbox/version.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
|
|
3
|
-
dt_now = datetime.datetime(2025,
|
|
3
|
+
dt_now = datetime.datetime(2025, 4, 6)
|
|
4
4
|
__appid__ = 'cmdbox'
|
|
5
5
|
__title__ = 'cmdbox (Command Development Application)'
|
|
6
|
-
__version__ = '0.5.
|
|
6
|
+
__version__ = '0.5.2'
|
|
7
7
|
__copyright__ = f'Copyright © 2023-{dt_now.strftime("%Y")} hamacom2004jp'
|
|
8
8
|
__pypiurl__ = 'https://pypi.org/project/cmdbox/'
|
|
9
9
|
__srcurl__ = 'https://github.com/hamacom2004jp/cmdbox'
|