cmdbox 0.5.4__py3-none-any.whl → 0.6.0.1__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.

Files changed (148) hide show
  1. cmdbox/app/auth/signin.py +463 -303
  2. cmdbox/app/common.py +51 -3
  3. cmdbox/app/commons/loghandler.py +62 -13
  4. cmdbox/app/edge.py +5 -173
  5. cmdbox/app/edge_tool.py +177 -0
  6. cmdbox/app/feature.py +10 -9
  7. cmdbox/app/features/cli/agent_base.py +479 -0
  8. cmdbox/app/features/cli/audit_base.py +17 -5
  9. cmdbox/app/features/cli/cmdbox_audit_search.py +24 -1
  10. cmdbox/app/features/cli/cmdbox_client_file_download.py +1 -1
  11. cmdbox/app/features/cli/cmdbox_cmd_list.py +105 -0
  12. cmdbox/app/features/cli/cmdbox_cmd_load.py +104 -0
  13. cmdbox/app/features/cli/cmdbox_edge_config.py +2 -2
  14. cmdbox/app/features/cli/cmdbox_edge_start.py +1 -1
  15. cmdbox/app/features/cli/cmdbox_gui_start.py +9 -132
  16. cmdbox/app/features/cli/cmdbox_gui_stop.py +4 -21
  17. cmdbox/app/features/cli/cmdbox_server_start.py +1 -1
  18. cmdbox/app/features/cli/cmdbox_web_apikey_add.py +1 -1
  19. cmdbox/app/features/cli/cmdbox_web_apikey_del.py +1 -1
  20. cmdbox/app/features/cli/cmdbox_web_genpass.py +0 -3
  21. cmdbox/app/features/cli/cmdbox_web_group_add.py +1 -1
  22. cmdbox/app/features/cli/cmdbox_web_group_del.py +1 -1
  23. cmdbox/app/features/cli/cmdbox_web_group_edit.py +1 -1
  24. cmdbox/app/features/cli/cmdbox_web_group_list.py +1 -1
  25. cmdbox/app/features/cli/cmdbox_web_start.py +120 -104
  26. cmdbox/app/features/cli/cmdbox_web_stop.py +1 -1
  27. cmdbox/app/features/cli/cmdbox_web_user_add.py +1 -1
  28. cmdbox/app/features/cli/cmdbox_web_user_del.py +1 -1
  29. cmdbox/app/features/cli/cmdbox_web_user_edit.py +1 -1
  30. cmdbox/app/features/cli/cmdbox_web_user_list.py +1 -1
  31. cmdbox/app/features/web/cmdbox_web_agent.py +262 -0
  32. cmdbox/app/features/web/cmdbox_web_do_signout.py +3 -3
  33. cmdbox/app/features/web/cmdbox_web_exec_cmd.py +8 -3
  34. cmdbox/app/features/web/cmdbox_web_signin.py +5 -4
  35. cmdbox/app/features/web/cmdbox_web_users.py +2 -0
  36. cmdbox/app/options.py +62 -9
  37. cmdbox/app/web.py +139 -15
  38. cmdbox/extensions/features.yml +18 -0
  39. cmdbox/extensions/sample_project/sample/app/features/cli/__init__.py +0 -0
  40. cmdbox/extensions/sample_project/sample/app/features/web/__init__.py +0 -0
  41. cmdbox/extensions/sample_project/sample/extensions/features.yml +18 -0
  42. cmdbox/extensions/sample_project/sample/extensions/user_list.yml +2 -1
  43. cmdbox/extensions/sample_project/sample/logconf_sample.yml +14 -1
  44. cmdbox/extensions/user_list.yml +1 -0
  45. cmdbox/licenses/LICENSE.Authlib.1.5.2(BSD License).txt +29 -0
  46. cmdbox/licenses/LICENSE.Deprecated.1.2.18(MIT License).txt +21 -0
  47. cmdbox/licenses/LICENSE.SQLAlchemy.2.0.40(MIT License).txt +19 -0
  48. cmdbox/licenses/LICENSE.aiohappyeyeballs.2.6.1(Python Software Foundation License).txt +279 -0
  49. cmdbox/licenses/LICENSE.aiohttp.3.11.18(Apache Software License).txt +13 -0
  50. cmdbox/licenses/LICENSE.aiosignal.1.3.2(Apache Software License).txt +201 -0
  51. cmdbox/licenses/LICENSE.attrs.25.3.0(UNKNOWN).txt +21 -0
  52. cmdbox/licenses/LICENSE.cachetools.5.5.2(MIT License).txt +20 -0
  53. cmdbox/licenses/LICENSE.distro.1.9.0(Apache Software License).txt +202 -0
  54. cmdbox/licenses/LICENSE.docstring_parser.0.16(MIT License).txt +21 -0
  55. cmdbox/licenses/LICENSE.filelock.3.18.0(The Unlicense (Unlicense)).txt +24 -0
  56. cmdbox/licenses/LICENSE.frozenlist.1.6.0(Apache-2.0).txt +201 -0
  57. cmdbox/licenses/LICENSE.fsspec.2025.3.2(BSD License).txt +29 -0
  58. cmdbox/licenses/LICENSE.google-adk.0.5.0(Apache Software License).txt +202 -0
  59. cmdbox/licenses/LICENSE.google-api-python-client.2.169.0(Apache Software License).txt +201 -0
  60. cmdbox/licenses/LICENSE.google-auth-httplib2.0.2.0(Apache Software License).txt +201 -0
  61. cmdbox/licenses/LICENSE.google-auth.2.40.1(Apache Software License).txt +201 -0
  62. cmdbox/licenses/LICENSE.google-cloud-aiplatform.1.92.0(Apache 2.0).txt +202 -0
  63. cmdbox/licenses/LICENSE.google-cloud-bigquery.3.31.0(Apache Software License).txt +202 -0
  64. cmdbox/licenses/LICENSE.google-cloud-core.2.4.3(Apache Software License).txt +202 -0
  65. cmdbox/licenses/LICENSE.google-cloud-resource-manager.1.14.2(Apache Software License).txt +202 -0
  66. cmdbox/licenses/LICENSE.google-cloud-secret-manager.2.23.3(Apache Software License).txt +202 -0
  67. cmdbox/licenses/LICENSE.google-cloud-speech.2.32.0(Apache Software License).txt +202 -0
  68. cmdbox/licenses/LICENSE.google-cloud-storage.2.19.0(Apache Software License).txt +202 -0
  69. cmdbox/licenses/LICENSE.google-cloud-trace.1.16.1(Apache Software License).txt +202 -0
  70. cmdbox/licenses/LICENSE.google-crc32c.1.7.1(Apache 2.0).txt +202 -0
  71. cmdbox/licenses/LICENSE.google-genai.1.14.0(Apache Software License).txt +202 -0
  72. cmdbox/licenses/LICENSE.google-resumable-media.2.7.2(Apache Software License).txt +202 -0
  73. cmdbox/licenses/LICENSE.googleapis-common-protos.1.70.0(Apache Software License).txt +202 -0
  74. cmdbox/licenses/LICENSE.graphviz.0.20.3(MIT License).txt +21 -0
  75. cmdbox/licenses/LICENSE.grpc-google-iam-v1.0.14.2(Apache Software License).txt +202 -0
  76. cmdbox/licenses/LICENSE.grpcio-status.1.71.0(Apache Software License).txt +610 -0
  77. cmdbox/licenses/LICENSE.grpcio.1.71.0(Apache Software License).txt +610 -0
  78. cmdbox/licenses/LICENSE.httpcore.1.0.9(BSD License).txt +27 -0
  79. cmdbox/licenses/LICENSE.httplib2.0.22.0(MIT License).txt +23 -0
  80. cmdbox/licenses/LICENSE.httpx-sse.0.4.0(MIT).txt +21 -0
  81. cmdbox/licenses/LICENSE.httpx.0.28.1(BSD License).txt +12 -0
  82. cmdbox/licenses/LICENSE.huggingface-hub.0.31.1(Apache Software License).txt +201 -0
  83. cmdbox/licenses/LICENSE.importlib_metadata.8.6.1(Apache Software License).txt +202 -0
  84. cmdbox/licenses/LICENSE.jiter.0.9.0(MIT License).txt +1 -0
  85. cmdbox/licenses/LICENSE.jsonschema-specifications.2025.4.1(UNKNOWN).txt +19 -0
  86. cmdbox/licenses/LICENSE.jsonschema.4.23.0(MIT License).txt +19 -0
  87. cmdbox/licenses/LICENSE.litellm.1.69.0(MIT License).txt +26 -0
  88. cmdbox/licenses/LICENSE.mcp.1.8.0(MIT License).txt +21 -0
  89. cmdbox/licenses/LICENSE.multidict.6.4.3(Apache Software License).txt +13 -0
  90. cmdbox/licenses/LICENSE.openai.1.75.0(Apache Software License).txt +201 -0
  91. cmdbox/licenses/LICENSE.opentelemetry-api.1.33.0(Apache Software License).txt +201 -0
  92. cmdbox/licenses/LICENSE.opentelemetry-exporter-gcp-trace.1.9.0(Apache Software License).txt +201 -0
  93. cmdbox/licenses/LICENSE.opentelemetry-resourcedetector-gcp.1.9.0a0(Apache Software License).txt +201 -0
  94. cmdbox/licenses/LICENSE.opentelemetry-sdk.1.33.0(Apache Software License).txt +201 -0
  95. cmdbox/licenses/LICENSE.opentelemetry-semantic-conventions.0.54b0(Apache Software License).txt +201 -0
  96. cmdbox/licenses/LICENSE.propcache.0.3.1(Apache Software License).txt +202 -0
  97. cmdbox/licenses/LICENSE.proto-plus.1.26.1(Apache Software License).txt +202 -0
  98. cmdbox/licenses/LICENSE.protobuf.5.29.4(3-Clause BSD License).txt +32 -0
  99. cmdbox/licenses/LICENSE.pyasn1.0.6.1(BSD License).txt +24 -0
  100. cmdbox/licenses/LICENSE.pyasn1_modules.0.4.2(BSD License).txt +24 -0
  101. cmdbox/licenses/LICENSE.pydantic-settings.2.9.1(MIT License).txt +21 -0
  102. cmdbox/licenses/LICENSE.pyparsing.3.2.3(MIT License).txt +18 -0
  103. cmdbox/licenses/LICENSE.python-dateutil.2.9.0.post0(Apache Software License; BSD License).txt +54 -0
  104. cmdbox/licenses/LICENSE.referencing.0.36.2(UNKNOWN).txt +19 -0
  105. cmdbox/licenses/LICENSE.regex.2024.11.6(Apache Software License).txt +208 -0
  106. cmdbox/licenses/LICENSE.rpds-py.0.24.0(MIT).txt +19 -0
  107. cmdbox/licenses/LICENSE.rsa.4.9.1(Apache Software License).txt +13 -0
  108. cmdbox/licenses/LICENSE.shapely.2.1.0(BSD License).txt +29 -0
  109. cmdbox/licenses/LICENSE.sse-starlette.2.3.4(BSD License).txt +27 -0
  110. cmdbox/licenses/LICENSE.tiktoken.0.9.0(MIT License).txt +21 -0
  111. cmdbox/licenses/LICENSE.tokenizers.0.21.1(Apache Software License).txt +1 -0
  112. cmdbox/licenses/LICENSE.tqdm.4.67.1(MIT License; Mozilla Public License 2.0 (MPL 2.0)).txt +49 -0
  113. cmdbox/licenses/LICENSE.tzlocal.5.3.1(MIT License).txt +19 -0
  114. cmdbox/licenses/LICENSE.uritemplate.4.1.1(Apache Software License; BSD License).txt +3 -0
  115. cmdbox/licenses/LICENSE.wrapt.1.17.2(BSD License).txt +24 -0
  116. cmdbox/licenses/LICENSE.yarl.1.20.0(Apache Software License).txt +202 -0
  117. cmdbox/licenses/files.txt +104 -11
  118. cmdbox/logconf_audit.yml +16 -3
  119. cmdbox/logconf_client.yml +16 -3
  120. cmdbox/logconf_cmdbox.yml +16 -3
  121. cmdbox/logconf_edge.yml +16 -3
  122. cmdbox/logconf_gui.yml +15 -2
  123. cmdbox/logconf_server.yml +15 -2
  124. cmdbox/logconf_web.yml +15 -2
  125. cmdbox/version.py +3 -2
  126. cmdbox/web/agent.html +263 -0
  127. cmdbox/web/assets/cmdbox/agent.js +338 -0
  128. cmdbox/web/assets/cmdbox/common.js +1111 -1020
  129. cmdbox/web/assets/cmdbox/main.js +17 -3
  130. cmdbox/web/assets/cmdbox/signin.js +4 -4
  131. cmdbox/web/assets/filer/filer.js +4 -2
  132. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/METADATA +69 -26
  133. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/RECORD +148 -67
  134. /cmdbox/licenses/{LICENSE.charset-normalizer.3.4.1(MIT License).txt → LICENSE.charset-normalizer.3.4.2(MIT License).txt} +0 -0
  135. /cmdbox/licenses/{LICENSE.click.8.1.8(BSD License).txt → LICENSE.click.8.2.0(UNKNOWN).txt} +0 -0
  136. /cmdbox/licenses/{LICENSE.cryptography.44.0.2(Apache Software License; BSD License).txt → LICENSE.cryptography.44.0.3(Apache Software License; BSD License).txt} +0 -0
  137. /cmdbox/licenses/{LICENSE.importlib_metadata.8.7.0(Apache Software License).txt → LICENSE.google-api-core.2.24.2(Apache Software License).txt} +0 -0
  138. /cmdbox/licenses/{LICENSE.greenlet.3.2.1(MIT AND Python-2.0).txt → LICENSE.greenlet.3.2.2(MIT AND Python-2.0).txt} +0 -0
  139. /cmdbox/licenses/{LICENSE.psycopg-binary.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt → LICENSE.psycopg-binary.3.2.7(GNU Lesser General Public License v3 (LGPLv3)).txt} +0 -0
  140. /cmdbox/licenses/{LICENSE.psycopg.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt → LICENSE.psycopg.3.2.7(GNU Lesser General Public License v3 (LGPLv3)).txt} +0 -0
  141. /cmdbox/licenses/{LICENSE.pydantic.2.11.3(MIT License).txt → LICENSE.pydantic.2.11.4(MIT License).txt} +0 -0
  142. /cmdbox/licenses/{LICENSE.pydantic_core.2.33.1(MIT License).txt → LICENSE.pydantic_core.2.33.2(MIT License).txt} +0 -0
  143. /cmdbox/licenses/{LICENSE.redis.5.2.1(MIT License).txt → LICENSE.redis.6.0.0(MIT License).txt} +0 -0
  144. /cmdbox/licenses/{LICENSE.snowballstemmer.2.2.0(BSD License).txt → LICENSE.snowballstemmer.3.0.1(BSD License).txt} +0 -0
  145. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/LICENSE +0 -0
  146. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/WHEEL +0 -0
  147. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/entry_points.txt +0 -0
  148. {cmdbox-0.5.4.dist-info → cmdbox-0.6.0.1.dist-info}/top_level.txt +0 -0
cmdbox/licenses/files.txt CHANGED
@@ -1,71 +1,135 @@
1
1
  Author License Name URL Version File
2
+ Hsiaoming Yang <me@lepture.com> BSD License Authlib https://github.com/lepture/authlib 1.5.2 cmdbox\licenses\LICENSE.Authlib.1.5.2(BSD License).txt
3
+ Laurent LAPORTE MIT License Deprecated https://github.com/laurent-laporte-pro/deprecated 1.2.18 cmdbox\licenses\LICENSE.Deprecated.1.2.18(MIT License).txt
2
4
  UNKNOWN BSD License Jinja2 https://github.com/pallets/jinja/ 3.1.6 cmdbox\licenses\LICENSE.Jinja2.3.1.6(BSD License).txt
3
5
  UNKNOWN BSD License MarkupSafe https://github.com/pallets/markupsafe/ 3.0.2 cmdbox\licenses\LICENSE.MarkupSafe.3.0.2(BSD License).txt
4
6
  Kirill Simonov MIT License PyYAML https://pyyaml.org/ 6.0.2 cmdbox\licenses\LICENSE.PyYAML.6.0.2(MIT License).txt
5
7
  Georg Brandl <georg@python.org> BSD License Pygments https://pygments.org 2.19.1 cmdbox\licenses\LICENSE.Pygments.2.19.1(BSD License).txt
8
+ Mike Bayer MIT License SQLAlchemy https://www.sqlalchemy.org 2.0.40 cmdbox\licenses\LICENSE.SQLAlchemy.2.0.40(MIT License).txt
6
9
  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
10
+ J. Nick Koston Python Software Foundation License aiohappyeyeballs https://github.com/aio-libs/aiohappyeyeballs 2.6.1 cmdbox\licenses\LICENSE.aiohappyeyeballs.2.6.1(Python Software Foundation License).txt
11
+ UNKNOWN Apache Software License aiohttp https://github.com/aio-libs/aiohttp 3.11.18 cmdbox\licenses\LICENSE.aiohttp.3.11.18(Apache Software License).txt
12
+ UNKNOWN Apache Software License aiosignal https://github.com/aio-libs/aiosignal 1.3.2 cmdbox\licenses\LICENSE.aiosignal.1.3.2(Apache Software License).txt
7
13
  UNKNOWN BSD License alabaster https://alabaster.readthedocs.io/ 1.0.0 cmdbox\licenses\LICENSE.alabaster.1.0.0(BSD License).txt
8
14
  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
15
  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
16
  Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.6.2 cmdbox\licenses\LICENSE.argcomplete.3.6.2(Apache Software License).txt
11
17
  Andrew Svetlov <andrew.svetlov@gmail.com> Apache Software License async-timeout https://github.com/aio-libs/async-timeout 5.0.1 cmdbox\licenses\LICENSE.async-timeout.5.0.1(Apache Software License).txt
18
+ Hynek Schlawack <hs@ox.cx> UNKNOWN attrs https://www.attrs.org/en/stable/changelog.html 25.3.0 cmdbox\licenses\LICENSE.attrs.25.3.0(UNKNOWN).txt
12
19
  Armin Ronacher BSD License babel https://babel.pocoo.org/ 2.17.0 cmdbox\licenses\LICENSE.babel.2.17.0(BSD License).txt
13
20
  "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
21
+ Thomas Kemmer MIT License cachetools https://github.com/tkem/cachetools/ 5.5.2 cmdbox\licenses\LICENSE.cachetools.5.5.2(MIT License).txt
14
22
  Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi 2025.4.26 cmdbox\licenses\LICENSE.certifi.2025.4.26(Mozilla Public License 2.0 (MPL 2.0)).txt
15
23
  Armin Rigo, Maciej Fijalkowski MIT License cffi http://cffi.readthedocs.org 1.17.1 cmdbox\licenses\LICENSE.cffi.1.17.1(MIT License).txt
16
- "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
17
- UNKNOWN BSD License click https://github.com/pallets/click/ 8.1.8 cmdbox\licenses\LICENSE.click.8.1.8(BSD License).txt
24
+ "Ahmed R. TAHRI" <tahri.ahmed@proton.me> MIT License charset-normalizer https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md 3.4.2 cmdbox\licenses\LICENSE.charset-normalizer.3.4.2(MIT License).txt
25
+ UNKNOWN UNKNOWN click https://github.com/pallets/click/ 8.2.0 cmdbox\licenses\LICENSE.click.8.2.0(UNKNOWN).txt
18
26
  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
19
- 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
27
+ The cryptography developers <cryptography-dev@python.org> Apache Software License; BSD License cryptography https://github.com/pyca/cryptography 44.0.3 cmdbox\licenses\LICENSE.cryptography.44.0.3(Apache Software License; BSD License).txt
28
+ Nir Cohen Apache Software License distro https://github.com/python-distro/distro 1.9.0 cmdbox\licenses\LICENSE.distro.1.9.0(Apache Software License).txt
29
+ Marcin Kurczewski MIT License docstring_parser https://github.com/rr-/docstring_parser 0.16 cmdbox\licenses\LICENSE.docstring_parser.0.16(MIT License).txt
20
30
  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
21
31
  =?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
32
+ UNKNOWN The Unlicense (Unlicense) filelock https://github.com/tox-dev/py-filelock 3.18.0 cmdbox\licenses\LICENSE.filelock.3.18.0(The Unlicense (Unlicense)).txt
33
+ UNKNOWN Apache-2.0 frozenlist https://github.com/aio-libs/frozenlist 1.6.0 cmdbox\licenses\LICENSE.frozenlist.1.6.0(Apache-2.0).txt
34
+ UNKNOWN BSD License fsspec https://github.com/fsspec/filesystem_spec 2025.3.2 cmdbox\licenses\LICENSE.fsspec.2025.3.2(BSD License).txt
22
35
  Denis Bilenko MIT gevent http://www.gevent.org/ 25.4.2 cmdbox\licenses\LICENSE.gevent.25.4.2(MIT).txt
23
- Alexey Borzenkov MIT AND Python-2.0 greenlet https://greenlet.readthedocs.io/ 3.2.1 cmdbox\licenses\LICENSE.greenlet.3.2.1(MIT AND Python-2.0).txt
36
+ Google LLC <googleapis-packages@google.com> Apache Software License google-adk https://google.github.io/adk-docs/ 0.5.0 cmdbox\licenses\LICENSE.google-adk.0.5.0(Apache Software License).txt
37
+ Google LLC <googleapis-packages@google.com> Apache Software License google-api-core https://github.com/googleapis/python-api-core 2.24.2 cmdbox\licenses\LICENSE.google-api-core.2.24.2(Apache Software License).txt
38
+ Google LLC Apache Software License google-api-python-client https://github.com/googleapis/google-api-python-client/ 2.169.0 cmdbox\licenses\LICENSE.google-api-python-client.2.169.0(Apache Software License).txt
39
+ Google Cloud Platform Apache Software License google-auth https://github.com/googleapis/google-auth-library-python 2.40.1 cmdbox\licenses\LICENSE.google-auth.2.40.1(Apache Software License).txt
40
+ Google Cloud Platform Apache Software License google-auth-httplib2 https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2 0.2.0 cmdbox\licenses\LICENSE.google-auth-httplib2.0.2.0(Apache Software License).txt
41
+ Google LLC Apache 2.0 google-cloud-aiplatform https://github.com/googleapis/python-aiplatform 1.92.0 cmdbox\licenses\LICENSE.google-cloud-aiplatform.1.92.0(Apache 2.0).txt
42
+ Google LLC <googleapis-packages@google.com> Apache Software License google-cloud-bigquery https://github.com/googleapis/python-bigquery 3.31.0 cmdbox\licenses\LICENSE.google-cloud-bigquery.3.31.0(Apache Software License).txt
43
+ Google LLC Apache Software License google-cloud-core https://github.com/googleapis/python-cloud-core 2.4.3 cmdbox\licenses\LICENSE.google-cloud-core.2.4.3(Apache Software License).txt
44
+ Google LLC Apache Software License google-cloud-resource-manager https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-resource-manager 1.14.2 cmdbox\licenses\LICENSE.google-cloud-resource-manager.1.14.2(Apache Software License).txt
45
+ Google LLC Apache Software License google-cloud-secret-manager https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-secret-manager 2.23.3 cmdbox\licenses\LICENSE.google-cloud-secret-manager.2.23.3(Apache Software License).txt
46
+ Google LLC Apache Software License google-cloud-speech https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-speech 2.32.0 cmdbox\licenses\LICENSE.google-cloud-speech.2.32.0(Apache Software License).txt
47
+ Google LLC Apache Software License google-cloud-storage https://github.com/googleapis/python-storage 2.19.0 cmdbox\licenses\LICENSE.google-cloud-storage.2.19.0(Apache Software License).txt
48
+ Google LLC Apache Software License google-cloud-trace https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-trace 1.16.1 cmdbox\licenses\LICENSE.google-cloud-trace.1.16.1(Apache Software License).txt
49
+ Google LLC Apache 2.0 google-crc32c https://github.com/googleapis/python-crc32c 1.7.1 cmdbox\licenses\LICENSE.google-crc32c.1.7.1(Apache 2.0).txt
50
+ Google LLC <googleapis-packages@google.com> Apache Software License google-genai https://github.com/googleapis/python-genai 1.14.0 cmdbox\licenses\LICENSE.google-genai.1.14.0(Apache Software License).txt
51
+ Google Cloud Platform Apache Software License google-resumable-media https://github.com/googleapis/google-resumable-media-python 2.7.2 cmdbox\licenses\LICENSE.google-resumable-media.2.7.2(Apache Software License).txt
52
+ Google LLC <googleapis-packages@google.com> Apache Software License googleapis-common-protos https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos 1.70.0 cmdbox\licenses\LICENSE.googleapis-common-protos.1.70.0(Apache Software License).txt
53
+ Sebastian Bank MIT License graphviz https://github.com/xflr6/graphviz 0.20.3 cmdbox\licenses\LICENSE.graphviz.0.20.3(MIT License).txt
54
+ Alexey Borzenkov MIT AND Python-2.0 greenlet https://greenlet.readthedocs.io/ 3.2.2 cmdbox\licenses\LICENSE.greenlet.3.2.2(MIT AND Python-2.0).txt
55
+ Google LLC <googleapis-packages@google.com> Apache Software License grpc-google-iam-v1 https://github.com/googleapis/google-cloud-python 0.14.2 cmdbox\licenses\LICENSE.grpc-google-iam-v1.0.14.2(Apache Software License).txt
56
+ The gRPC Authors Apache Software License grpcio https://grpc.io 1.71.0 cmdbox\licenses\LICENSE.grpcio.1.71.0(Apache Software License).txt
57
+ The gRPC Authors Apache Software License grpcio-status https://grpc.io 1.71.0 cmdbox\licenses\LICENSE.grpcio-status.1.71.0(Apache Software License).txt
24
58
  Benoit Chesneau <benoitc@gunicorn.org> MIT License gunicorn https://gunicorn.org 23.0.0 cmdbox\licenses\LICENSE.gunicorn.23.0.0(MIT License).txt
25
59
  Nathaniel J. Smith MIT License h11 https://github.com/python-hyper/h11 0.16.0 cmdbox\licenses\LICENSE.h11.0.16.0(MIT License).txt
60
+ Tom Christie <tom@tomchristie.com> BSD License httpcore https://www.encode.io/httpcore/ 1.0.9 cmdbox\licenses\LICENSE.httpcore.1.0.9(BSD License).txt
61
+ Joe Gregorio MIT License httplib2 https://github.com/httplib2/httplib2 0.22.0 cmdbox\licenses\LICENSE.httplib2.0.22.0(MIT License).txt
26
62
  Yury Selivanov MIT License httptools https://github.com/MagicStack/httptools 0.6.4 cmdbox\licenses\LICENSE.httptools.0.6.4(MIT License).txt
63
+ Tom Christie <tom@tomchristie.com> BSD License httpx https://github.com/encode/httpx 0.28.1 cmdbox\licenses\LICENSE.httpx.0.28.1(BSD License).txt
64
+ Florimond Manca <florimond.manca@protonmail.com> MIT httpx-sse https://github.com/florimondmanca/httpx-sse 0.4.0 cmdbox\licenses\LICENSE.httpx-sse.0.4.0(MIT).txt
65
+ Hugging Face, Inc. Apache Software License huggingface-hub https://github.com/huggingface/huggingface_hub 0.31.1 cmdbox\licenses\LICENSE.huggingface-hub.0.31.1(Apache Software License).txt
27
66
  UNKNOWN Apache Software License id https://pypi.org/project/id/ 1.5.0 cmdbox\licenses\LICENSE.id.1.5.0(Apache Software License).txt
28
67
  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
29
68
  Yoshiki Shibukawa MIT License imagesize https://github.com/shibukawa/imagesize_py 1.4.1 cmdbox\licenses\LICENSE.imagesize.1.4.1(MIT License).txt
30
- "Jason R. Coombs" <jaraco@jaraco.com> Apache Software License importlib_metadata https://github.com/python/importlib_metadata 8.7.0 cmdbox\licenses\LICENSE.importlib_metadata.8.7.0(Apache Software License).txt
69
+ "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
31
70
  UNKNOWN BSD License itsdangerous https://github.com/pallets/itsdangerous/ 2.2.0 cmdbox\licenses\LICENSE.itsdangerous.2.2.0(BSD License).txt
32
71
  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
33
72
  "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
34
73
  "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
74
+ Samuel Colvin <samuel@pydantic.dev> MIT License jiter https://github.com/pydantic/jiter/ 0.9.0 cmdbox\licenses\LICENSE.jiter.0.9.0(MIT License).txt
75
+ Julian Berman <Julian+jsonschema@GrayVines.com> MIT License jsonschema https://github.com/python-jsonschema/jsonschema 4.23.0 cmdbox\licenses\LICENSE.jsonschema.4.23.0(MIT License).txt
76
+ Julian Berman <Julian+jsonschema-specifications@GrayVines.com> UNKNOWN jsonschema-specifications https://github.com/python-jsonschema/jsonschema-specifications 2025.4.1 cmdbox\licenses\LICENSE.jsonschema-specifications.2025.4.1(UNKNOWN).txt
35
77
  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
78
+ BerriAI MIT License litellm https://litellm.ai 1.69.0 cmdbox\licenses\LICENSE.litellm.1.69.0(MIT License).txt
36
79
  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
80
+ Anthropic, PBC. MIT License mcp https://modelcontextprotocol.io 1.8.0 cmdbox\licenses\LICENSE.mcp.1.8.0(MIT License).txt
37
81
  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
38
82
  Erik Rose <erikrose@grinchcentral.com> MIT License more-itertools https://github.com/more-itertools/more-itertools 10.7.0 cmdbox\licenses\LICENSE.more-itertools.10.7.0(MIT License).txt
83
+ Andrew Svetlov Apache Software License multidict https://github.com/aio-libs/multidict 6.4.3 cmdbox\licenses\LICENSE.multidict.6.4.3(Apache Software License).txt
39
84
  messense <messense@icloud.com> MIT nh3 UNKNOWN 0.2.21 cmdbox\licenses\LICENSE.nh3.0.2.21(MIT).txt
40
85
  Travis E. Oliphant et al. BSD License numpy https://numpy.org 2.2.5 cmdbox\licenses\LICENSE.numpy.2.2.5(BSD License).txt
86
+ OpenAI <support@openai.com> Apache Software License openai https://github.com/openai/openai-python 1.75.0 cmdbox\licenses\LICENSE.openai.1.75.0(Apache Software License).txt
87
+ OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io> Apache Software License opentelemetry-api https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-api 1.33.0 cmdbox\licenses\LICENSE.opentelemetry-api.1.33.0(Apache Software License).txt
88
+ Google Apache Software License opentelemetry-exporter-gcp-trace https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-exporter-gcp-trace 1.9.0 cmdbox\licenses\LICENSE.opentelemetry-exporter-gcp-trace.1.9.0(Apache Software License).txt
89
+ Google Apache Software License opentelemetry-resourcedetector-gcp https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-resourcedetector-gcp 1.9.0a0 cmdbox\licenses\LICENSE.opentelemetry-resourcedetector-gcp.1.9.0a0(Apache Software License).txt
90
+ OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io> Apache Software License opentelemetry-sdk https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-sdk 1.33.0 cmdbox\licenses\LICENSE.opentelemetry-sdk.1.33.0(Apache Software License).txt
91
+ OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io> Apache Software License opentelemetry-semantic-conventions https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-semantic-conventions 0.54b0 cmdbox\licenses\LICENSE.opentelemetry-semantic-conventions.0.54b0(Apache Software License).txt
41
92
  Donald Stufft <donald@stufft.io> Apache Software License; BSD License packaging https://github.com/pypa/packaging 25.0 cmdbox\licenses\LICENSE.packaging.25.0(Apache Software License; BSD License).txt
42
93
  "Jeffrey A. Clark" <aclark@aclark.net> UNKNOWN pillow https://python-pillow.github.io 11.2.1 cmdbox\licenses\LICENSE.pillow.11.2.1(UNKNOWN).txt
43
94
  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
44
95
  Kivy team MIT License plyer https://plyer.readthedocs.org/en/latest/ 2.1.0 cmdbox\licenses\LICENSE.plyer.2.1.0(MIT License).txt
45
96
  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
46
97
  Jonathan Slenders BSD License prompt_toolkit UNKNOWN 3.0.51 cmdbox\licenses\LICENSE.prompt_toolkit.3.0.51(BSD License).txt
47
- 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
48
- 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
98
+ Andrew Svetlov Apache Software License propcache https://github.com/aio-libs/propcache 0.3.1 cmdbox\licenses\LICENSE.propcache.0.3.1(Apache Software License).txt
99
+ Google LLC <googleapis-packages@google.com> Apache Software License proto-plus https://github.com/googleapis/proto-plus-python 1.26.1 cmdbox\licenses\LICENSE.proto-plus.1.26.1(Apache Software License).txt
100
+ protobuf@googlegroups.com 3-Clause BSD License protobuf https://developers.google.com/protocol-buffers/ 5.29.4 cmdbox\licenses\LICENSE.protobuf.5.29.4(3-Clause BSD License).txt
101
+ Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg https://psycopg.org/psycopg3/ 3.2.7 cmdbox\licenses\LICENSE.psycopg.3.2.7(GNU Lesser General Public License v3 (LGPLv3)).txt
102
+ Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg-binary https://psycopg.org/psycopg3/ 3.2.7 cmdbox\licenses\LICENSE.psycopg-binary.3.2.7(GNU Lesser General Public License v3 (LGPLv3)).txt
103
+ Ilya Etingof BSD License pyasn1 https://github.com/pyasn1/pyasn1 0.6.1 cmdbox\licenses\LICENSE.pyasn1.0.6.1(BSD License).txt
104
+ Ilya Etingof BSD License pyasn1_modules https://github.com/pyasn1/pyasn1-modules 0.4.2 cmdbox\licenses\LICENSE.pyasn1_modules.0.4.2(BSD License).txt
49
105
  Eli Bendersky BSD License pycparser https://github.com/eliben/pycparser 2.22 cmdbox\licenses\LICENSE.pycparser.2.22(BSD License).txt
50
106
  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.3 cmdbox\licenses\LICENSE.pydantic.2.11.3(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.1 cmdbox\licenses\LICENSE.pydantic_core.2.33.1(MIT License).txt
107
+ 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.4 cmdbox\licenses\LICENSE.pydantic.2.11.4(MIT License).txt
108
+ Samuel Colvin <s@muelcolvin.com>, Eric Jolibois <em.jolibois@gmail.com>, Hasan Ramezani <hasan.r67@gmail.com> MIT License pydantic-settings https://github.com/pydantic/pydantic-settings 2.9.1 cmdbox\licenses\LICENSE.pydantic-settings.2.9.1(MIT License).txt
109
+ 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.2 cmdbox\licenses\LICENSE.pydantic_core.2.33.2(MIT License).txt
110
+ Paul McGuire <ptmcg.gm+pyparsing@gmail.com> MIT License pyparsing https://github.com/pyparsing/pyparsing/ 3.2.3 cmdbox\licenses\LICENSE.pyparsing.3.2.3(MIT License).txt
53
111
  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
112
+ Gustavo Niemeyer Apache Software License; BSD License python-dateutil https://github.com/dateutil/dateutil 2.9.0.post0 cmdbox\licenses\LICENSE.python-dateutil.2.9.0.post0(Apache Software License; BSD License).txt
54
113
  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
114
  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
56
115
  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
116
  Tom Bocklisch MIT License questionary https://github.com/tmbo/questionary 2.1.0 cmdbox\licenses\LICENSE.questionary.2.1.0(MIT License).txt
58
117
  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
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
118
+ "Redis Inc." <oss@redis.com> MIT License redis https://github.com/redis/redis-py 6.0.0 cmdbox\licenses\LICENSE.redis.6.0.0(MIT License).txt
119
+ Julian Berman <Julian+referencing@GrayVines.com> UNKNOWN referencing https://github.com/python-jsonschema/referencing 0.36.2 cmdbox\licenses\LICENSE.referencing.0.36.2(UNKNOWN).txt
120
+ Matthew Barnett Apache Software License regex https://github.com/mrabarnett/mrab-regex 2024.11.6 cmdbox\licenses\LICENSE.regex.2024.11.6(Apache Software License).txt
60
121
  Kenneth Reitz Apache Software License requests https://requests.readthedocs.io 2.32.3 cmdbox\licenses\LICENSE.requests.2.32.3(Apache Software License).txt
61
122
  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
62
123
  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
63
124
  Will McGugan MIT License rich https://github.com/Textualize/rich 14.0.0 cmdbox\licenses\LICENSE.rich.14.0.0(MIT License).txt
64
125
  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
126
+ Julian Berman <Julian+rpds@GrayVines.com> MIT rpds-py https://github.com/crate-py/rpds 0.24.0 cmdbox\licenses\LICENSE.rpds-py.0.24.0(MIT).txt
127
+ Sybren A. Stüvel Apache Software License rsa https://stuvel.eu/rsa 4.9.1 cmdbox\licenses\LICENSE.rsa.4.9.1(Apache Software License).txt
65
128
  Python Packaging Authority MIT License setuptools https://github.com/pypa/setuptools 65.5.0 cmdbox\licenses\LICENSE.setuptools.65.5.0(MIT License).txt
129
+ Sean Gillies BSD License shapely https://github.com/shapely/shapely 2.1.0 cmdbox\licenses\LICENSE.shapely.2.1.0(BSD License).txt
66
130
  Benjamin Peterson MIT License six https://github.com/benjaminp/six 1.17.0 cmdbox\licenses\LICENSE.six.1.17.0(MIT License).txt
67
131
  "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
68
- Snowball Developers BSD License snowballstemmer https://github.com/snowballstem/snowball 2.2.0 cmdbox\licenses\LICENSE.snowballstemmer.2.2.0(BSD License).txt
132
+ Snowball Developers BSD License snowballstemmer https://github.com/snowballstem/snowball 3.0.1 cmdbox\licenses\LICENSE.snowballstemmer.3.0.1(BSD License).txt
69
133
  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
70
134
  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
71
135
  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
@@ -77,19 +141,48 @@ Adam Turner BSD License sphinxcontrib-jquery https://github.com/sphinx-contrib/j
77
141
  Georg Brandl BSD License sphinxcontrib-jsmath http://sphinx-doc.org/ 1.0.1 cmdbox\licenses\LICENSE.sphinxcontrib-jsmath.1.0.1(BSD License).txt
78
142
  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
79
143
  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
144
+ sysid <sysid@gmx.de> BSD License sse-starlette https://github.com/sysid/sse-starlette 2.3.4 cmdbox\licenses\LICENSE.sse-starlette.2.3.4(BSD License).txt
80
145
  Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.46.2 cmdbox\licenses\LICENSE.starlette.0.46.2(BSD License).txt
81
146
  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
147
+ Shantanu Jain MIT License
148
+
149
+ Copyright (c) 2022 OpenAI, Shantanu Jain
150
+
151
+ Permission is hereby granted, free of charge, to any person obtaining a copy
152
+ of this software and associated documentation files (the "Software"), to deal
153
+ in the Software without restriction, including without limitation the rights
154
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
155
+ copies of the Software, and to permit persons to whom the Software is
156
+ furnished to do so, subject to the following conditions:
157
+
158
+ The above copyright notice and this permission notice shall be included in all
159
+ copies or substantial portions of the Software.
160
+
161
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
162
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
163
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
164
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
165
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
166
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
167
+ SOFTWARE.
168
+ tiktoken https://github.com/openai/tiktoken 0.9.0 cmdbox\licenses\LICENSE.tiktoken.0.9.0(MIT License).txt
169
+ Anthony MOI <m.anthony.moi@gmail.com> Apache Software License tokenizers https://github.com/huggingface/tokenizers 0.21.1 cmdbox\licenses\LICENSE.tokenizers.0.21.1(Apache Software License).txt
82
170
  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
171
+ UNKNOWN MIT License; Mozilla Public License 2.0 (MPL 2.0) tqdm https://tqdm.github.io 4.67.1 cmdbox\licenses\LICENSE.tqdm.4.67.1(MIT License; Mozilla Public License 2.0 (MPL 2.0)).txt
83
172
  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
173
  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
174
  "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com> UNKNOWN typing_extensions https://github.com/python/typing_extensions 4.13.2 cmdbox\licenses\LICENSE.typing_extensions.4.13.2(UNKNOWN).txt
86
175
  Python Software Foundation Apache Software License tzdata https://github.com/python/tzdata 2025.2 cmdbox\licenses\LICENSE.tzdata.2025.2(Apache Software License).txt
176
+ Lennart Regebro <regebro@gmail.com> MIT License tzlocal https://github.com/regebro/tzlocal/blob/master/CHANGES.txt 5.3.1 cmdbox\licenses\LICENSE.tzlocal.5.3.1(MIT License).txt
177
+ Ian Stapleton Cordasco Apache Software License; BSD License uritemplate https://uritemplate.readthedocs.org 4.1.1 cmdbox\licenses\LICENSE.uritemplate.4.1.1(Apache Software License; BSD License).txt
87
178
  Andrey Petrov <andrey.petrov@shazow.net> UNKNOWN urllib3 https://github.com/urllib3/urllib3/blob/main/CHANGES.rst 2.4.0 cmdbox\licenses\LICENSE.urllib3.2.4.0(UNKNOWN).txt
88
179
  Tom Christie <tom@tomchristie.com>, Marcelo Trylesinski <marcelotryle@gmail.com> BSD License uvicorn https://www.uvicorn.org/ 0.34.2 cmdbox\licenses\LICENSE.uvicorn.0.34.2(BSD License).txt
89
180
  Samuel Colvin <s@muelcolvin.com> MIT License watchfiles https://github.com/samuelcolvin/watchfiles 1.0.5 cmdbox\licenses\LICENSE.watchfiles.1.0.5(MIT License).txt
90
181
  Jeff Quast MIT License wcwidth https://github.com/jquast/wcwidth 0.2.13 cmdbox\licenses\LICENSE.wcwidth.0.2.13(MIT License).txt
91
182
  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
92
183
  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
184
+ Graham Dumpleton BSD License wrapt https://github.com/GrahamDumpleton/wrapt 1.17.2 cmdbox\licenses\LICENSE.wrapt.1.17.2(BSD License).txt
185
+ Andrew Svetlov Apache Software License yarl https://github.com/aio-libs/yarl 1.20.0 cmdbox\licenses\LICENSE.yarl.1.20.0(Apache Software License).txt
93
186
  "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
94
187
  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
95
188
  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 CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  audit:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -21,10 +33,11 @@ handlers:
21
33
 
22
34
  loggers:
23
35
  audit:
24
- handlers: [audit]
36
+ handlers: [audit, std]
25
37
  level: INFO
26
38
  qualname: audit
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_client.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  client:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -21,10 +33,11 @@ handlers:
21
33
 
22
34
  loggers:
23
35
  client:
24
- handlers: [client]
36
+ handlers: [client, std]
25
37
  level: INFO
26
38
  qualname: client
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_cmdbox.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  cmdbox:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -21,10 +33,11 @@ handlers:
21
33
 
22
34
  loggers:
23
35
  cmdbox:
24
- handlers: [cmdbox]
36
+ handlers: [cmdbox, std]
25
37
  level: INFO
26
38
  qualname: cmdbox
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_edge.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  edge:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -21,10 +33,11 @@ handlers:
21
33
 
22
34
  loggers:
23
35
  edge:
24
- handlers: [edge]
36
+ handlers: [edge, std]
25
37
  level: INFO
26
38
  qualname: edge
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_gui.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  gui:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -24,7 +36,8 @@ loggers:
24
36
  handlers: [gui, std]
25
37
  level: INFO
26
38
  qualname: gui
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_server.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  server:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -24,7 +36,8 @@ loggers:
24
36
  handlers: [server, std]
25
37
  level: INFO
26
38
  qualname: server
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/logconf_web.yml CHANGED
@@ -2,7 +2,11 @@ version: 1
2
2
 
3
3
  formatters:
4
4
  fmt:
5
- format: '%(levelname)s[%(asctime)s] - %(message)s'
5
+ format: '[%(asctime)s] %(levelname)s - %(message)s'
6
+ datefmt: '%Y-%m-%d %H:%M:%S'
7
+ class: logging.Formatter
8
+ fmt_rich:
9
+ format: '%(message)s'
6
10
  class: logging.Formatter
7
11
  handlers:
8
12
  std:
@@ -10,6 +14,14 @@ handlers:
10
14
  level: INFO
11
15
  formatter: fmt
12
16
  stream: ext://sys.stdout
17
+ rich:
18
+ class: rich.logging.RichHandler
19
+ level: INFO
20
+ formatter: fmt_rich
21
+ show_path: false
22
+ omit_repeated_times: false
23
+ tracebacks_word_wrap: false
24
+ log_time_format: '[%Y-%m-%d %H:%M]'
13
25
  web:
14
26
  class: cmdbox.app.commons.loghandler.TimedRotatingFileHandler
15
27
  level: INFO
@@ -24,7 +36,8 @@ loggers:
24
36
  handlers: [web, std]
25
37
  level: INFO
26
38
  qualname: web
27
-
39
+ propagate: false
40
+
28
41
  #root:
29
42
  # handlers: [std]
30
43
  # level: NOTSET
cmdbox/version.py CHANGED
@@ -1,9 +1,9 @@
1
1
  import datetime
2
2
 
3
- dt_now = datetime.datetime(2025, 4, 29)
3
+ dt_now = datetime.datetime(2025, 6, 1)
4
4
  __appid__ = 'cmdbox'
5
5
  __title__ = 'cmdbox (Command Development Application)'
6
- __version__ = '0.5.4'
6
+ __version__ = '0.6.0.1'
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'
@@ -18,6 +18,7 @@ __logo__ = '''
18
18
  ╚═════╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝'''
19
19
  __description__ = f'{__title__} {__version__}\n\n' + \
20
20
  f'{__copyright__}\n' + \
21
+ f'Build Date: {dt_now.strftime("%Y-%m-%d")}\n' + \
21
22
  f'Web Site: PyPi <{__pypiurl__}>\n' + \
22
23
  f'Web Site: SorceCode <{__srcurl__}>\n' + \
23
24
  f'Web Site: Document <{__docurl__}>\n' + \