pyxecm 3.0.0__py3-none-any.whl → 3.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 pyxecm might be problematic. Click here for more details.

@@ -0,0 +1,126 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyxecm
3
+ Version: 3.0.1
4
+ Summary: A Python library to interact with Opentext Content Management Rest API
5
+ Project-URL: Homepage, https://github.com/opentext/pyxecm
6
+ Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
7
+ Keywords: appworks,archivecenter,contentserver,extendedecm,opentext,otds
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
14
+ Requires-Python: >=3.10
15
+ Requires-Dist: lxml>=6.0.0
16
+ Requires-Dist: opentelemetry-api>=1.34.1
17
+ Requires-Dist: opentelemetry-exporter-otlp>=1.34.1
18
+ Requires-Dist: opentelemetry-instrumentation-requests>=0.55b1
19
+ Requires-Dist: opentelemetry-instrumentation-threading>=0.55b1
20
+ Requires-Dist: opentelemetry-sdk>=1.34.1
21
+ Requires-Dist: pandas>=2.3.1
22
+ Requires-Dist: requests-toolbelt>=1.0.0
23
+ Requires-Dist: requests>=2.32.4
24
+ Requires-Dist: suds>=1.2.0
25
+ Requires-Dist: websockets>=15.0.1
26
+ Requires-Dist: xmltodict>=0.14.2
27
+ Provides-Extra: api
28
+ Requires-Dist: asyncio>=3.4.3; extra == 'api'
29
+ Requires-Dist: fastapi>=0.116.0; extra == 'api'
30
+ Requires-Dist: jinja2>=3.1.6; extra == 'api'
31
+ Requires-Dist: opentelemetry-api>=1.34.1; extra == 'api'
32
+ Requires-Dist: opentelemetry-instrumentation-fastapi>=0.55b1; extra == 'api'
33
+ Requires-Dist: opentelemetry-sdk>=1.34.1; extra == 'api'
34
+ Requires-Dist: prometheus-fastapi-instrumentator>=7.1.0; extra == 'api'
35
+ Requires-Dist: pydantic-settings>=2.10.1; extra == 'api'
36
+ Requires-Dist: python-multipart>=0.0.20; extra == 'api'
37
+ Requires-Dist: uvicorn>=0.35.0; extra == 'api'
38
+ Provides-Extra: customizer
39
+ Requires-Dist: kubernetes>=33.1.0; extra == 'customizer'
40
+ Requires-Dist: playwright>=1.53.0; extra == 'customizer'
41
+ Requires-Dist: pydantic>=2.11.7; extra == 'customizer'
42
+ Requires-Dist: python-hcl2>=7.2.1; extra == 'customizer'
43
+ Provides-Extra: magic
44
+ Requires-Dist: python-magic; extra == 'magic'
45
+ Provides-Extra: pyvis
46
+ Requires-Dist: pyvis>=0.3.2; extra == 'pyvis'
47
+ Provides-Extra: sap
48
+ Requires-Dist: pyrfc==3.3.1; extra == 'sap'
49
+ Description-Content-Type: text/markdown
50
+
51
+ # PYXECM
52
+
53
+ A python library to interact with Opentext Content Mangement REST API.
54
+ The product API documentation is available on [OpenText Developer](https://developer.opentext.com/ce/products/extendedecm)
55
+ Detailed documentation of this package is available [here](https://opentext.github.io/pyxecm/).
56
+
57
+ ## Quick start - Library usage
58
+
59
+ Install the latest version from pypi:
60
+
61
+ ```bash
62
+ pip install pyxecm
63
+ ```
64
+
65
+ ### Start using the package libraries
66
+
67
+ example usage of the OTCS class, more details can be found in the docs:
68
+
69
+ ```python
70
+ from pyxecm import OTCS
71
+
72
+ otcs_object = OTCS(
73
+ protocol="https",
74
+ hostname="otcs.domain.tld",
75
+ port="443",
76
+ public_url="otcs.domain.tld",
77
+ username="admin",
78
+ password="********",
79
+ base_path="/cs/llisapi.dll",
80
+ )
81
+
82
+ otcs_object.authenticate()
83
+
84
+ nodes = otcs_object.get_subnodes(2000)
85
+
86
+ for node in nodes["results"]:
87
+ print(node["data"]["properties"]["id"], node["data"]["properties"]["name"])
88
+ ```
89
+
90
+ ## Quick start - Customizer usage
91
+
92
+ - Create an `.env` file as described here: [sample-environment-variables](customizerapisettings/#sample-environment-variables)
93
+ - Create an payload file to define what the customizer should do, as described here [payload-syntax](payload-syntax)
94
+
95
+ ```bash
96
+ pip install pyxecm[customizer]
97
+
98
+ pyxecm-customizer PAYLOAD.tfvars/PAYLOAD.yaml
99
+ ```
100
+
101
+ ## Quick start - API
102
+
103
+ - Install pyxecm with api and customizer dependencies
104
+ - Launch the Rest API server
105
+ - Access the Customizer API at [http://localhost:8000/api](http://localhost:8000/api)
106
+
107
+ ```bash
108
+ pip install pyxecm[api,customizer]
109
+
110
+ pyxecm-api
111
+ ```
112
+
113
+ ## Disclaimer
114
+
115
+
116
+ Copyright © 2025 Open Text Corporation, All Rights Reserved.
117
+ The above copyright notice and this permission notice shall be included in all
118
+ copies or substantial portions of the Software.
119
+
120
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
121
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
122
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
123
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
124
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
125
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
126
+ SOFTWARE.
@@ -90,7 +90,7 @@ pyxecm_maintenance_page/app.py,sha256=pTOeZfgPPq6BT7P8naUjW-ZT9dXqwX6DWazIVL-9Fk
90
90
  pyxecm_maintenance_page/settings.py,sha256=VRReZeNdza7i7lgnQ3wVojzoPDGXZnzr5rsMJY1EnHk,955
91
91
  pyxecm_maintenance_page/static/favicon.avif,sha256=POuuPXKbjHVP3BjNLpFIx8MfkQg5z2LZA7sK6lejARg,1543
92
92
  pyxecm_maintenance_page/templates/maintenance.html,sha256=0OAinv7jmj3Aa7GNCIoBLDGEMW1-_HdJfwWmkmb6Cs4,5581
93
- pyxecm-3.0.0.dist-info/METADATA,sha256=3uq-NrrqgoEj56ACyRlWMOpvC8LDfYWAGYwD8jlQ3y0,2239
94
- pyxecm-3.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
95
- pyxecm-3.0.0.dist-info/entry_points.txt,sha256=prc1mDdpd3bQk98VRBozI363mDUgSwDibDKXGNqKqgI,151
96
- pyxecm-3.0.0.dist-info/RECORD,,
93
+ pyxecm-3.0.1.dist-info/METADATA,sha256=DpJqpnLy9py7ju-mO8HRQ4Rddm5EuHWADJ50cU71bRQ,4512
94
+ pyxecm-3.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
95
+ pyxecm-3.0.1.dist-info/entry_points.txt,sha256=prc1mDdpd3bQk98VRBozI363mDUgSwDibDKXGNqKqgI,151
96
+ pyxecm-3.0.1.dist-info/RECORD,,
@@ -1,48 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pyxecm
3
- Version: 3.0.0
4
- Summary: A Python library to interact with Opentext Content Management Rest API
5
- Project-URL: Homepage, https://github.com/opentext/pyxecm
6
- Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
7
- Keywords: appworks,archivecenter,contentserver,extendedecm,opentext,otds
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Operating System :: OS Independent
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
14
- Requires-Python: >=3.10
15
- Requires-Dist: lxml>=6.0.0
16
- Requires-Dist: opentelemetry-api>=1.34.1
17
- Requires-Dist: opentelemetry-exporter-otlp>=1.34.1
18
- Requires-Dist: opentelemetry-instrumentation-requests>=0.55b1
19
- Requires-Dist: opentelemetry-instrumentation-threading>=0.55b1
20
- Requires-Dist: opentelemetry-sdk>=1.34.1
21
- Requires-Dist: pandas>=2.3.1
22
- Requires-Dist: requests-toolbelt>=1.0.0
23
- Requires-Dist: requests>=2.32.4
24
- Requires-Dist: suds>=1.2.0
25
- Requires-Dist: websockets>=15.0.1
26
- Requires-Dist: xmltodict>=0.14.2
27
- Provides-Extra: api
28
- Requires-Dist: asyncio>=3.4.3; extra == 'api'
29
- Requires-Dist: fastapi>=0.116.0; extra == 'api'
30
- Requires-Dist: jinja2>=3.1.6; extra == 'api'
31
- Requires-Dist: opentelemetry-api>=1.34.1; extra == 'api'
32
- Requires-Dist: opentelemetry-instrumentation-fastapi>=0.55b1; extra == 'api'
33
- Requires-Dist: opentelemetry-sdk>=1.34.1; extra == 'api'
34
- Requires-Dist: prometheus-fastapi-instrumentator>=7.1.0; extra == 'api'
35
- Requires-Dist: pydantic-settings>=2.10.1; extra == 'api'
36
- Requires-Dist: python-multipart>=0.0.20; extra == 'api'
37
- Requires-Dist: uvicorn>=0.35.0; extra == 'api'
38
- Provides-Extra: customizer
39
- Requires-Dist: kubernetes>=33.1.0; extra == 'customizer'
40
- Requires-Dist: playwright>=1.53.0; extra == 'customizer'
41
- Requires-Dist: pydantic>=2.11.7; extra == 'customizer'
42
- Requires-Dist: python-hcl2>=7.2.1; extra == 'customizer'
43
- Provides-Extra: magic
44
- Requires-Dist: python-magic; extra == 'magic'
45
- Provides-Extra: pyvis
46
- Requires-Dist: pyvis>=0.3.2; extra == 'pyvis'
47
- Provides-Extra: sap
48
- Requires-Dist: pyrfc==3.3.1; extra == 'sap'
File without changes