cmem-cmemc 24.2.0rc2__py3-none-any.whl → 24.3.0rc2__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.
Files changed (51) hide show
  1. cmem_cmemc/__init__.py +7 -12
  2. cmem_cmemc/command.py +20 -0
  3. cmem_cmemc/command_group.py +70 -0
  4. cmem_cmemc/commands/__init__.py +0 -81
  5. cmem_cmemc/commands/acl.py +118 -62
  6. cmem_cmemc/commands/admin.py +46 -35
  7. cmem_cmemc/commands/client.py +2 -1
  8. cmem_cmemc/commands/config.py +3 -1
  9. cmem_cmemc/commands/dataset.py +27 -24
  10. cmem_cmemc/commands/graph.py +160 -19
  11. cmem_cmemc/commands/metrics.py +195 -79
  12. cmem_cmemc/commands/migration.py +267 -0
  13. cmem_cmemc/commands/project.py +62 -17
  14. cmem_cmemc/commands/python.py +56 -25
  15. cmem_cmemc/commands/query.py +23 -14
  16. cmem_cmemc/commands/resource.py +10 -2
  17. cmem_cmemc/commands/scheduler.py +10 -2
  18. cmem_cmemc/commands/store.py +118 -14
  19. cmem_cmemc/commands/user.py +8 -2
  20. cmem_cmemc/commands/validation.py +165 -78
  21. cmem_cmemc/commands/variable.py +10 -2
  22. cmem_cmemc/commands/vocabulary.py +48 -29
  23. cmem_cmemc/commands/workflow.py +86 -59
  24. cmem_cmemc/commands/workspace.py +27 -8
  25. cmem_cmemc/completion.py +190 -140
  26. cmem_cmemc/constants.py +2 -0
  27. cmem_cmemc/context.py +88 -42
  28. cmem_cmemc/manual_helper/graph.py +1 -0
  29. cmem_cmemc/manual_helper/multi_page.py +3 -1
  30. cmem_cmemc/migrations/__init__.py +1 -0
  31. cmem_cmemc/migrations/abc.py +84 -0
  32. cmem_cmemc/migrations/access_conditions_243.py +122 -0
  33. cmem_cmemc/migrations/bootstrap_data.py +28 -0
  34. cmem_cmemc/migrations/shapes_widget_integrations_243.py +274 -0
  35. cmem_cmemc/migrations/workspace_configurations.py +28 -0
  36. cmem_cmemc/object_list.py +53 -22
  37. cmem_cmemc/parameter_types/__init__.py +1 -0
  38. cmem_cmemc/parameter_types/path.py +69 -0
  39. cmem_cmemc/smart_path/__init__.py +94 -0
  40. cmem_cmemc/smart_path/clients/__init__.py +63 -0
  41. cmem_cmemc/smart_path/clients/http.py +65 -0
  42. cmem_cmemc/string_processor.py +83 -0
  43. cmem_cmemc/title_helper.py +41 -0
  44. cmem_cmemc/utils.py +100 -45
  45. {cmem_cmemc-24.2.0rc2.dist-info → cmem_cmemc-24.3.0rc2.dist-info}/LICENSE +1 -1
  46. cmem_cmemc-24.3.0rc2.dist-info/METADATA +89 -0
  47. cmem_cmemc-24.3.0rc2.dist-info/RECORD +53 -0
  48. {cmem_cmemc-24.2.0rc2.dist-info → cmem_cmemc-24.3.0rc2.dist-info}/WHEEL +1 -1
  49. cmem_cmemc-24.2.0rc2.dist-info/METADATA +0 -69
  50. cmem_cmemc-24.2.0rc2.dist-info/RECORD +0 -37
  51. {cmem_cmemc-24.2.0rc2.dist-info → cmem_cmemc-24.3.0rc2.dist-info}/entry_points.txt +0 -0
@@ -1,69 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cmem-cmemc
3
- Version: 24.2.0rc2
4
- Summary: Command line client for eccenca Corporate Memory
5
- Home-page: https://eccenca.com/go/cmemc
6
- License: Apache 2.0
7
- Author: eccenca
8
- Author-email: cmempy-developer@eccenca.com
9
- Requires-Python: >=3.9,<4.0
10
- Classifier: Development Status :: 5 - Production/Stable
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: Intended Audience :: System Administrators
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: License :: Other/Proprietary License
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Topic :: Database
22
- Classifier: Topic :: Software Development :: Testing
23
- Classifier: Topic :: Utilities
24
- Requires-Dist: beautifulsoup4 (>=4.12.2,<5.0.0)
25
- Requires-Dist: certifi (>=2023.5.7)
26
- Requires-Dist: click (>=8.1.7,<9.0.0)
27
- Requires-Dist: click-didyoumean (>=0.3.0,<0.4.0)
28
- Requires-Dist: click-help-colors (>=0.9.1,<0.10.0)
29
- Requires-Dist: cmem-cmempy (==24.1.0)
30
- Requires-Dist: configparser (>=5.3.0,<6.0.0)
31
- Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
32
- Requires-Dist: junit-xml (>=1.9,<2.0)
33
- Requires-Dist: natsort (>=8.3.1,<9.0.0)
34
- Requires-Dist: prometheus-client (>=0.16.0,<0.17.0)
35
- Requires-Dist: pygments (>=2.15.1,<3.0.0)
36
- Requires-Dist: pyjwt (>=2.7.0,<3.0.0)
37
- Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
38
- Requires-Dist: requests (>=2.31.0,<3.0.0)
39
- Requires-Dist: rich (>=13.7.0,<14.0.0)
40
- Requires-Dist: six (>=1.16.0,<2.0.0)
41
- Requires-Dist: timeago (>=1.0.16,<2.0.0)
42
- Requires-Dist: treelib (>=1.6.4,<2.0.0)
43
- Requires-Dist: urllib3 (>=2,<3)
44
- Description-Content-Type: text/markdown
45
-
46
- # cmemc
47
-
48
- cmemc is the official command line client for [eccenca Corporate Memory](https://documentation.eccenca.com/).
49
-
50
- ## Installation
51
-
52
- In order to install the cmemc, run:
53
-
54
- pipx install cmem-cmemc
55
-
56
- Of course you can install cmemc also with pip, but we recommend [pipx](https://pypa.github.io/pipx/) for normal desktop usage.
57
-
58
- ## Configuration and Usage
59
-
60
- cmemc is intended for System Administrators and Linked Data Expert, who wants to automate and remote control activities on eccenca Corporate Memory.
61
-
62
- The cmemc manual including basic usage pattern, configuration as well as a command reference is available at:
63
-
64
- [https://eccenca.com/go/cmemc](https://eccenca.com/go/cmemc)
65
-
66
- cmemc only works with Python 3 and refuses to work with Python 2.x.
67
- In addition to that, cmemc will warn you in case an untested Python environment is used.
68
-
69
-
@@ -1,37 +0,0 @@
1
- cmem_cmemc/__init__.py,sha256=w73jTA8dNxxVbGqEXjpwavMgGaFxbtYLe7xfdhgA6DE,5788
2
- cmem_cmemc/_cmemc.zsh,sha256=fmkrBHIQxus8cp2AgO1tzZ5mNZdGL_83cYz3a9uAdsg,1326
3
- cmem_cmemc/commands/__init__.py,sha256=Bv4Pqp3Zd6hiR8nD9ynGZV5XEyNCm24lulNYunrh6V8,3625
4
- cmem_cmemc/commands/acl.py,sha256=cA76UvQquhZc9MdS3e94kcfSn9V_RzTQ5XM0Ko6w6hM,13769
5
- cmem_cmemc/commands/admin.py,sha256=p1oThgJ48hCSqWz6C770Rc_-b9BVIzfI6FoBcZz-7_o,8657
6
- cmem_cmemc/commands/client.py,sha256=23Sc3h64eAMaB4bJVfiamR470DMpDj1hsPWKsxUSMLg,5039
7
- cmem_cmemc/commands/config.py,sha256=BazGuXA5Pcs-yal6QAnf-16CEv59bnCVDqhJkLJMiKE,5698
8
- cmem_cmemc/commands/dataset.py,sha256=o11fMe9oAhgWRkFaBebnCTf5S3MYE3byLOEah_rOJYM,30225
9
- cmem_cmemc/commands/graph.py,sha256=cylE7IBe-BRMHhYvCl8SSSfDDn1UKzaiqbYg0JzDWz0,27328
10
- cmem_cmemc/commands/metrics.py,sha256=BlZvYvp1RWLl9rEknxxcOnOh2_zQgGqMEEXFwtJa58E,7832
11
- cmem_cmemc/commands/project.py,sha256=9yBFWVVNn2owv27VQJbW0SL_LA2K70NJ57NMkQso8y4,19267
12
- cmem_cmemc/commands/python.py,sha256=9XPLExJ19BqXIYOp34KZtTRheSiChQya5I7gSCBaMso,9468
13
- cmem_cmemc/commands/query.py,sha256=BV0l_4slhoZPcUD0uZCAJmW-bamj4dVvVhP5BrDDMRY,26791
14
- cmem_cmemc/commands/resource.py,sha256=baOyuyF5TVHT1goMC8fB5V_mg0NoiM3oVGE7UrDTW0w,7533
15
- cmem_cmemc/commands/scheduler.py,sha256=DFmb8ISYr94xYeZ07PrLwCU5en7XKtWbAnVsKkKHnSA,8511
16
- cmem_cmemc/commands/store.py,sha256=hgY4VhsGEVUac2B0MjGIvSr4tUzl4gWu_x8XsBMNPfE,6740
17
- cmem_cmemc/commands/user.py,sha256=Ma-dEI_Nr0dout4GlAdkWw5ydKATlG8In1O3aPTpS3o,12287
18
- cmem_cmemc/commands/validation.py,sha256=_GOHgjruWyqfoTOl5_P0-pb9qOq4RVOyzydl2d-R7Iw,26604
19
- cmem_cmemc/commands/variable.py,sha256=a2U6r0bCI90WPGi_ZMw2Wpy8_qNbLCHfTIgVuUMOwWQ,11355
20
- cmem_cmemc/commands/vocabulary.py,sha256=OvIrSrgLuo3FO69zdrFm5e-eEcrc2tX_h71XCm_Bh7I,16738
21
- cmem_cmemc/commands/workflow.py,sha256=DqxxdvbBQBMF1PCgGi4uBiXyV6EsFOEpES7Bi71lBtU,24649
22
- cmem_cmemc/commands/workspace.py,sha256=XA0Zo_C9A8yaIi75iumtUnpimYinbQvZLszFbLl4qDs,4096
23
- cmem_cmemc/completion.py,sha256=r6XOG6nOCnfL8HLqIbXnID_eHoZTK0OUxB-QWxOouT0,42010
24
- cmem_cmemc/constants.py,sha256=rQ7QXkO99y3TA2isjx209C62Zt2u72lwRrteq9OkKo8,421
25
- cmem_cmemc/context.py,sha256=T7QsTaIeYQUI5STdebcV4doe5QFo2xe62qEAryYD6iE,17889
26
- cmem_cmemc/exceptions.py,sha256=SpUHdmVM8cZpSjBv6ICgr9NLr3OJ5XO42DlvjohprVo,232
27
- cmem_cmemc/manual_helper/__init__.py,sha256=G3Lqw2aPxo8x63Tg7L0aa5VD9BMaRzZDmhrog7IuEPg,43
28
- cmem_cmemc/manual_helper/graph.py,sha256=tJsqv5eSIvlpFpQIQ5SZCLPYsaOnwsUUAKHniXpwVlE,3597
29
- cmem_cmemc/manual_helper/multi_page.py,sha256=JeRHTgfXD_8Ani9wzyBK8aUOfKfYeaat3U90I-CdykE,12170
30
- cmem_cmemc/manual_helper/single_page.py,sha256=sVSeaZmPa-Cs6dtp27MqyiO6rIrskY9BtDyeAZhBWXM,1477
31
- cmem_cmemc/object_list.py,sha256=6TeJ2sc8olLhXYvPCr_CUE009RjsgpEYEl2AUm5G6Vg,13255
32
- cmem_cmemc/utils.py,sha256=2ma2yVIbII9aCHGcZl9k9j1Xcx34d5dPhs_ncVVsk7Y,10650
33
- cmem_cmemc-24.2.0rc2.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
34
- cmem_cmemc-24.2.0rc2.dist-info/METADATA,sha256=3by-IA3G_ZC3qSQazYA4IOpC1yMJuSb7Jl8k8DRDAU4,2660
35
- cmem_cmemc-24.2.0rc2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
36
- cmem_cmemc-24.2.0rc2.dist-info/entry_points.txt,sha256=znWUTG-zgDITu6Frsd-OtNxBxj6Uo8Fa7bz6gaZYMrA,41
37
- cmem_cmemc-24.2.0rc2.dist-info/RECORD,,