pyPreservica 0.9.9__py3-none-any.whl → 3.3.4__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.
- pyPreservica/__init__.py +26 -8
- pyPreservica/adminAPI.py +877 -0
- pyPreservica/authorityAPI.py +229 -0
- pyPreservica/common.py +553 -94
- pyPreservica/contentAPI.py +331 -65
- pyPreservica/entityAPI.py +1805 -446
- pyPreservica/mdformsAPI.py +572 -0
- pyPreservica/monitorAPI.py +153 -0
- pyPreservica/opex.py +98 -0
- pyPreservica/parAPI.py +226 -0
- pyPreservica/retentionAPI.py +155 -44
- pyPreservica/settingsAPI.py +295 -0
- pyPreservica/uploadAPI.py +1120 -321
- pyPreservica/webHooksAPI.py +211 -0
- pyPreservica/workflowAPI.py +99 -47
- {pyPreservica-0.9.9.dist-info → pypreservica-3.3.4.dist-info}/METADATA +93 -66
- pypreservica-3.3.4.dist-info/RECORD +20 -0
- {pyPreservica-0.9.9.dist-info → pypreservica-3.3.4.dist-info}/WHEEL +5 -5
- pyPreservica-0.9.9.dist-info/RECORD +0 -12
- {pyPreservica-0.9.9.dist-info → pypreservica-3.3.4.dist-info/licenses}/LICENSE.txt +0 -0
- {pyPreservica-0.9.9.dist-info → pypreservica-3.3.4.dist-info}/top_level.txt +0 -0
|
@@ -1,66 +1,93 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
2
|
-
Name: pyPreservica
|
|
3
|
-
Version:
|
|
4
|
-
Summary: Python library for the Preservica API
|
|
5
|
-
Home-page: https://pypreservica.readthedocs.io/
|
|
6
|
-
Author: James Carr
|
|
7
|
-
Author-email: drjamescarr@gmail.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Project-URL: Documentation, https://pypreservica.readthedocs.io
|
|
10
|
-
Project-URL: Source, https://github.com/carj/pyPreservica
|
|
11
|
-
Project-URL: Discussion Forum, https://groups.google.com/g/pypreservica
|
|
12
|
-
Keywords: Preservica API Preservation
|
|
13
|
-
|
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
Classifier:
|
|
16
|
-
Classifier:
|
|
17
|
-
Classifier:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyPreservica
|
|
3
|
+
Version: 3.3.4
|
|
4
|
+
Summary: Python library for the Preservica API
|
|
5
|
+
Home-page: https://pypreservica.readthedocs.io/
|
|
6
|
+
Author: James Carr
|
|
7
|
+
Author-email: drjamescarr@gmail.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Project-URL: Documentation, https://pypreservica.readthedocs.io
|
|
10
|
+
Project-URL: Source, https://github.com/carj/pyPreservica
|
|
11
|
+
Project-URL: Discussion Forum, https://groups.google.com/g/pypreservica
|
|
12
|
+
Keywords: Preservica API Preservation
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Topic :: System :: Archiving
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE.txt
|
|
24
|
+
Requires-Dist: requests
|
|
25
|
+
Requires-Dist: urllib3
|
|
26
|
+
Requires-Dist: certifi
|
|
27
|
+
Requires-Dist: boto3>=1.38.0
|
|
28
|
+
Requires-Dist: botocore>=1.38.0
|
|
29
|
+
Requires-Dist: s3transfer
|
|
30
|
+
Requires-Dist: azure-storage-blob
|
|
31
|
+
Requires-Dist: tqdm
|
|
32
|
+
Requires-Dist: pyotp
|
|
33
|
+
Requires-Dist: python-dateutil
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: home-page
|
|
40
|
+
Dynamic: keywords
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
Dynamic: project-url
|
|
44
|
+
Dynamic: requires-dist
|
|
45
|
+
Dynamic: summary
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
# pyPreservica
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
[](https://pypi.org/project/pyPreservica)
|
|
52
|
+
[](https://github.com/carj/pyPreservica/actions/workflows/codeql-analysis.yml)
|
|
53
|
+

|
|
54
|
+
|
|
55
|
+
Python language binding for the Preservica API
|
|
56
|
+
|
|
57
|
+
https://preservica.com/
|
|
58
|
+
|
|
59
|
+
This library provides a Python class for working with the Preservica Rest API
|
|
60
|
+
|
|
61
|
+
https://developers.preservica.com/api-reference
|
|
62
|
+
|
|
63
|
+
Wiki with example scripts https://github.com/carj/pyPreservica/wiki
|
|
64
|
+
|
|
65
|
+
## Documentation
|
|
66
|
+
|
|
67
|
+
The full documentation is available at: https://pypreservica.readthedocs.io/
|
|
68
|
+
|
|
69
|
+
[](https://pypreservica.readthedocs.io/en/latest/?badge=latest)
|
|
70
|
+
|
|
71
|
+
## Contributing
|
|
72
|
+
|
|
73
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/carj/pyPreservica
|
|
74
|
+
|
|
75
|
+
For announcements about new versions and discussion of pyPreservica please subscribe to the google groups
|
|
76
|
+
forum https://groups.google.com/g/pypreservica
|
|
77
|
+
|
|
78
|
+
## License
|
|
79
|
+
|
|
80
|
+
The package is available as open source under the terms of the Apache License 2.0
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
## Installation
|
|
84
|
+
|
|
85
|
+
pyPreservica is available from the Python Package Index (PyPI)
|
|
86
|
+
|
|
87
|
+
https://pypi.org/project/pyPreservica/
|
|
88
|
+
|
|
89
|
+
To install pyPreservica, simply run this simple command in your terminal of choice:
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
$ pip install pyPreservica
|
|
93
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
pyPreservica/__init__.py,sha256=erxwOLhS7avD25N_KKBdk6_Uj6N7xMbNZYSY2E7ZkBw,1271
|
|
2
|
+
pyPreservica/adminAPI.py,sha256=_ZTb8T708loYn8UdFgZ4G5RTef9Hd2HHtjKnnrzBAtY,38041
|
|
3
|
+
pyPreservica/authorityAPI.py,sha256=A52sFiAK4E4mlend_dknNIOW2BEwKXcLFI02anZBt3U,9211
|
|
4
|
+
pyPreservica/common.py,sha256=TV4VgO4QI5YDdPYvm9ue1lxqSIf2E2j0_tQbFmwMf0U,39922
|
|
5
|
+
pyPreservica/contentAPI.py,sha256=pVhKNzqDsIKmmHbevuPffl9bjP8o5BrCDXMP6qFJohE,25531
|
|
6
|
+
pyPreservica/entityAPI.py,sha256=kyw03RnxKEveViQvdDy6MdscXOcAZxs9LC7hpKe3B3g,140235
|
|
7
|
+
pyPreservica/mdformsAPI.py,sha256=A2YTT5uh6j1k_kg_33492cplwZc_jYv6zmiIt5Rvx6c,23259
|
|
8
|
+
pyPreservica/monitorAPI.py,sha256=LJOUrynBOWKlNiYpZ1iH8qB1oIIuKX1Ms1SRBcuXohA,6274
|
|
9
|
+
pyPreservica/opex.py,sha256=ccra1S4ojUXS3PlbU8WfxajOkJrwG4OykBnNrYP_jus,4875
|
|
10
|
+
pyPreservica/parAPI.py,sha256=f0ZUxLd0U-BW6kBx5K7W2Pv7NjG3MkTNydmxQ3U1ZVE,9296
|
|
11
|
+
pyPreservica/retentionAPI.py,sha256=QUTCbN4P3IpqmrebU_wd3n5ZVcyxVLTFAli8Y_GxOW4,24843
|
|
12
|
+
pyPreservica/settingsAPI.py,sha256=jXnMOCq3mimta6E-Os3J1I1if2pYsjLpOazAx8L-ZQI,10721
|
|
13
|
+
pyPreservica/uploadAPI.py,sha256=UVRFcLDH4s0Tik0vWmkQ6WkJX2h5Yk1MnJZX83HtcpQ,82084
|
|
14
|
+
pyPreservica/webHooksAPI.py,sha256=ngNnGZt5tif7Lrdiuhof9y51fAj5uxBkPGF7RdZ7v_s,8671
|
|
15
|
+
pyPreservica/workflowAPI.py,sha256=bIoXNlr8uBQJ9Nkd1EdpN0uVt_UwtELa_YXpX1PEJh4,17619
|
|
16
|
+
pypreservica-3.3.4.dist-info/licenses/LICENSE.txt,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
17
|
+
pypreservica-3.3.4.dist-info/METADATA,sha256=EQyrxJjtDIpKccL1Vk26yV2DKHRrDXfYNHo4bkF2Xzs,3077
|
|
18
|
+
pypreservica-3.3.4.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
19
|
+
pypreservica-3.3.4.dist-info/top_level.txt,sha256=iIBh6NAznYQHOV8mv_y_kGKSDITek9rANyFDwJsbU-c,13
|
|
20
|
+
pypreservica-3.3.4.dist-info/RECORD,,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
Wheel-Version: 1.0
|
|
2
|
-
Generator:
|
|
3
|
-
Root-Is-Purelib: true
|
|
4
|
-
Tag: py3-none-any
|
|
5
|
-
|
|
1
|
+
Wheel-Version: 1.0
|
|
2
|
+
Generator: setuptools (80.10.1)
|
|
3
|
+
Root-Is-Purelib: true
|
|
4
|
+
Tag: py3-none-any
|
|
5
|
+
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
pyPreservica/__init__.py,sha256=Rum_v-ohGjoGL2zVzjqGTwYV1U7tPmj9W_BRogIWPd0,673
|
|
2
|
-
pyPreservica/common.py,sha256=02d8M5O5APJyxMNFvzd0bi4QRunVflv5el7tBUiIGro,20831
|
|
3
|
-
pyPreservica/contentAPI.py,sha256=SGWCHbIy-nsceQwHBDYfEcXutZGTyZaNqFer5HI5JaU,12762
|
|
4
|
-
pyPreservica/entityAPI.py,sha256=gflwFTSHC2RqdGYEKr22xW11J-YcHxE9xfw-l5NNpjs,72603
|
|
5
|
-
pyPreservica/retentionAPI.py,sha256=WjK4c8COk1mQskht9DdntD9OYoNvUebD4ob1cTLAHak,21449
|
|
6
|
-
pyPreservica/uploadAPI.py,sha256=7KTlvJEcpB3hn8qpKRsb6VTm6qyDC2CeWj9_1U7Ijgc,42666
|
|
7
|
-
pyPreservica/workflowAPI.py,sha256=6VjYwKaHATXBXo1qbXuZTiAcTj1zyHYu9-e0yuFBBaU,16049
|
|
8
|
-
pyPreservica-0.9.9.dist-info/LICENSE.txt,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
9
|
-
pyPreservica-0.9.9.dist-info/METADATA,sha256=cM72K5eTT4FgzcE9G1f2c5RT_REnNZ4xOMThvVtJ1-o,2139
|
|
10
|
-
pyPreservica-0.9.9.dist-info/WHEEL,sha256=D1Wh14kWDxPnrM-5t_6UCB-UuQNrEODtRa3vF4OsvQY,97
|
|
11
|
-
pyPreservica-0.9.9.dist-info/top_level.txt,sha256=iIBh6NAznYQHOV8mv_y_kGKSDITek9rANyFDwJsbU-c,13
|
|
12
|
-
pyPreservica-0.9.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|