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 CHANGED
@@ -1,22 +1,40 @@
1
1
  """
2
- pyPreservica module definition
2
+ pyPreservica package definition
3
3
  import API classes, for entity, content, upload, workflows & retention
4
4
 
5
5
  author: James Carr
6
6
  licence: Apache License 2.0
7
7
 
8
8
  """
9
+
9
10
  from .common import *
10
- from .contentAPI import ContentAPI
11
+ from .contentAPI import ContentAPI, Field, SortOrder
11
12
  from .entityAPI import EntityAPI
12
- from .uploadAPI import UploadAPI, simple_asset_package, complex_asset_package, cvs_to_xsd, cvs_to_xml, \
13
- cvs_to_cmis_xslt, csv_to_search_xml
14
- from .workflowAPI import WorkflowAPI
15
- from .retentionAPI import RetentionAPI
13
+ from .uploadAPI import (
14
+ UploadAPI,
15
+ simple_asset_package,
16
+ complex_asset_package,
17
+ cvs_to_xsd,
18
+ cvs_to_xml,
19
+ cvs_to_cmis_xslt,
20
+ csv_to_search_xml,
21
+ generic_asset_package,
22
+ upload_config,
23
+ multi_asset_package,
24
+ )
25
+ from .workflowAPI import WorkflowAPI, WorkflowContext, WorkflowInstance
26
+ from .retentionAPI import RetentionAPI, RetentionAssignment, RetentionPolicy
27
+ from .parAPI import PreservationActionRegistry
28
+ from .adminAPI import AdminAPI
29
+ from .monitorAPI import MonitorAPI, MonitorCategory, MonitorStatus, MessageStatus
30
+ from .webHooksAPI import WebHooksAPI, TriggerType, WebHookHandler, FlaskWebhookHandler
31
+ from .authorityAPI import AuthorityAPI, Table
32
+ from .mdformsAPI import MetadataGroupsAPI, Group, GroupField, GroupFieldType
33
+ from .settingsAPI import SettingsAPI
16
34
 
17
35
  __author__ = "James Carr (drjamescarr@gmail.com)"
18
36
 
19
- # Version of the Preservica API package
20
- __version__ = "0.9.9"
37
+ # Version of the pyPreservica package
38
+ __version__ = "3.3.4"
21
39
 
22
40
  __license__ = "Apache License Version 2.0"