kodexa 7.4.413425327775__py3-none-any.whl → 7.4.413426137050__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.
kodexa/platform/client.py CHANGED
@@ -2683,21 +2683,6 @@ class WorkspaceEndpoint(EntityEndpoint, Workspace):
2683
2683
  raise ValueError("Workspace has no channel")
2684
2684
 
2685
2685
 
2686
- class TaskTemplateEndpoint(EntityEndpoint, Task):
2687
- """Represents a task endpoint.
2688
-
2689
- This class is used to interact with the task endpoint of the API.
2690
- """
2691
-
2692
- def get_type(self) -> str:
2693
- """Get the type of the endpoint.
2694
-
2695
- Returns:
2696
- str: The type of the endpoint, in this case "projects".
2697
- """
2698
- return "taskTemplates"
2699
-
2700
-
2701
2686
  class RetainedGuidanceEndpoint(EntityEndpoint, RetainedGuidance):
2702
2687
  """Represents a retained guidance endpoint.
2703
2688
 
@@ -3043,70 +3028,6 @@ class AssistantsEndpoint(EntitiesEndpoint):
3043
3028
  return PageAssistantEndpoint
3044
3029
 
3045
3030
 
3046
- class TaskTemplatesEndpoint(EntitiesEndpoint):
3047
- """Represents a projects endpoint"""
3048
-
3049
- def get_type(self) -> str:
3050
- """
3051
- Get the type of the endpoint.
3052
-
3053
- Returns:
3054
- str: The type of the endpoint.
3055
- """
3056
- return "taskTemplates"
3057
-
3058
- def get_instance_class(self, object_dict=None):
3059
- """
3060
- Get the instance class of the endpoint.
3061
-
3062
- Returns:
3063
- ProjectEndpoint: The instance class of the endpoint.
3064
- """
3065
- return TaskTemplateEndpoint
3066
-
3067
- def get_page_class(self, object_dict=None):
3068
- """
3069
- Get the page class of the endpoint.
3070
-
3071
- Returns:
3072
- PageProjectEndpoint: The page class of the endpoint.
3073
- """
3074
- return PageTaskTemplateEndpoint
3075
-
3076
-
3077
- class TasksEndpoint(EntitiesEndpoint):
3078
- """Represents a projects endpoint"""
3079
-
3080
- """Represents a projects endpoint"""
3081
-
3082
- def get_type(self) -> str:
3083
- """
3084
- Get the type of the endpoint.
3085
-
3086
- Returns:
3087
- str: The type of the endpoint.
3088
- """
3089
- return "tasks"
3090
-
3091
- def get_instance_class(self, object_dict=None):
3092
- """
3093
- Get the instance class of the endpoint.
3094
-
3095
- Returns:
3096
- ProjectEndpoint: The instance class of the endpoint.
3097
- """
3098
- return TaskEndpoint
3099
-
3100
- def get_page_class(self, object_dict=None):
3101
- """
3102
- Get the page class of the endpoint.
3103
-
3104
- Returns:
3105
- PageProjectEndpoint: The page class of the endpoint.
3106
- """
3107
- return PageTaskEndpoint
3108
-
3109
-
3110
3031
  class RetainedGuidancesEndpoint(EntitiesEndpoint):
3111
3032
  """Represents a projects endpoint"""
3112
3033
 
@@ -0,0 +1,98 @@
1
+ Metadata-Version: 2.1
2
+ Name: kodexa
3
+ Version: 7.4.413426137050
4
+ Summary: Python SDK for the Kodexa Platform
5
+ Author: Austin Redenbaugh
6
+ Author-email: austin@kodexa.com
7
+ Requires-Python: >=3.11,<4.0
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Topic :: Software Development :: Libraries
14
+ Requires-Dist: addict (>=2.4.0,<3.0.0)
15
+ Requires-Dist: appdirs (>=1.4.4,<2.0.0)
16
+ Requires-Dist: better-exceptions (>=0.3.3,<0.4.0)
17
+ Requires-Dist: certifi (>=2025.0.0,<2026.0.0)
18
+ Requires-Dist: chevron (>=0.14.0,<0.15.0)
19
+ Requires-Dist: deepdiff (>=8.0.1,<9.0.0)
20
+ Requires-Dist: msgpack (>=1.0.6,<2.0.0)
21
+ Requires-Dist: ply (>=3.11,<4.0)
22
+ Requires-Dist: pydantic (>=2.5.3,<3.0.0)
23
+ Requires-Dist: pydantic-yaml (>=1.0.0,<2.0.0)
24
+ Requires-Dist: pyfunctional (==1.5.0)
25
+ Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
26
+ Requires-Dist: pyyaml (>=6.0,<7.0)
27
+ Requires-Dist: requests (>=2.28.1,<3.0.0)
28
+ Requires-Dist: semver (>=3.0.1,<4.0.0)
29
+ Requires-Dist: simpleeval (>=1.0.0,<2.0.0)
30
+ Requires-Dist: urllib3 (>=2.0.0,<3.0.0)
31
+ Description-Content-Type: text/markdown
32
+
33
+ # Kodexa Python SDK
34
+
35
+ Learn more about Kodexa at [kodexa.ai](https://kodexa.ai).
36
+
37
+ ## Installation & Setup
38
+
39
+ The project uses Poetry for dependency management. To get started:
40
+
41
+ 1. Make sure you have Poetry installed:
42
+ ```bash
43
+ curl -sSL https://install.python-poetry.org | python3 -
44
+ ```
45
+
46
+ 2. Install dependencies:
47
+ ```bash
48
+ poetry install
49
+ ```
50
+
51
+ 3. Run tests to verify your setup:
52
+ ```bash
53
+ poetry run pytest
54
+ ```
55
+
56
+ ## Documentation
57
+
58
+ Comprehensive documentation, including API references, tutorials, and best practices, is available at the [Kodexa Support Portal](https://support.kodexa.ai).
59
+
60
+ Key documentation sections include:
61
+ - Getting Started Guide
62
+ - API Reference
63
+ - Pipeline Development
64
+ - Model Creation
65
+ - Platform Integration
66
+ - Best Practices
67
+
68
+ ## Examples
69
+
70
+ Check out our documentation for practical examples of:
71
+ - Document processing pipelines
72
+ - Custom model development
73
+ - Content extraction and transformation
74
+ - Platform integration patterns
75
+ - Action implementation
76
+
77
+ ## Contributing
78
+
79
+ We welcome contributions to the Kodexa platform! Whether it's:
80
+ - Bug fixes
81
+ - Feature enhancements
82
+ - Documentation improvements
83
+ - Example contributions
84
+
85
+ Please see our [contributing guide](CONTRIBUTING.md) for details on how to get involved.
86
+
87
+ ## License
88
+
89
+ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
90
+
91
+ ## Support
92
+
93
+ - Visit our [Developer Portal](https://developer.kodexa.ai) for documentation
94
+ - Contact us directly at support@kodexa.com for enterprise support
95
+
96
+ ---
97
+
98
+ Built with ❤️ by the Kodexa team
@@ -19,7 +19,7 @@ kodexa/model/utils.py,sha256=6R-3rFiW9irBwj0Mq5yhp7EDXkNUFaeFhr3bWmnlW4g,2961
19
19
  kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
20
20
  kodexa/pipeline/pipeline.py,sha256=zyNEpA7KlGhPs_l-vgV6m-OCb16dbxQhl8QezeylugA,25540
21
21
  kodexa/platform/__init__.py,sha256=1O3oiWMg292NPL_NacKDnK1T3_R6cMorrPRue_9e-O4,216
22
- kodexa/platform/client.py,sha256=bWIpL_WhMlO01CC0i-OBgUJ3NJ6BVlxHXyxFZBAXTYc,232634
22
+ kodexa/platform/client.py,sha256=4wnUPN68MR2QYi2YDtXUW2sGrdqP-7pEZgOQp2SEJsI,230736
23
23
  kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
24
24
  kodexa/platform/kodexa.py,sha256=tPXHO500q3S75GhKGDcaxO51Viq2PNlHmAzpBZlahgo,34857
25
25
  kodexa/selectors/__init__.py,sha256=xA9-4vpyaAZWPSk3bh2kvDLkdv6XEmm7PjFbpziiTIk,100
@@ -44,7 +44,7 @@ kodexa/testing/test_utils.py,sha256=v44p__gE7ia67W7WeHN2HBFCWSCUrCZt7G4xBNCmwf8,
44
44
  kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
45
45
  kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  kodexa/utils/__init__.py,sha256=Pnim1o9_db5YEnNvDTxpM7HG-qTlL6n8JwFwOafU9wo,5928
47
- kodexa-7.4.413425327775.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
48
- kodexa-7.4.413425327775.dist-info/METADATA,sha256=Y62yxq5XUBEi4eEfB3z5_qXaxoKLndqHbq--RPpbhnc,3428
49
- kodexa-7.4.413425327775.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
50
- kodexa-7.4.413425327775.dist-info/RECORD,,
47
+ kodexa-7.4.413426137050.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
48
+ kodexa-7.4.413426137050.dist-info/METADATA,sha256=1Om0lya3HRNlZTY176QRFHxqjyWN3tfgyNJ7BIHBq4M,2813
49
+ kodexa-7.4.413426137050.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
50
+ kodexa-7.4.413426137050.dist-info/RECORD,,
@@ -1,87 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: kodexa
3
- Version: 7.4.413425327775
4
- Summary: Python SDK for the Kodexa Platform
5
- Author: Austin Redenbaugh
6
- Author-email: austin@kodexa.com
7
- Requires-Python: >=3.11,<4.0
8
- Classifier: Development Status :: 5 - Production/Stable
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Topic :: Software Development :: Libraries
14
- Requires-Dist: addict (>=2.4.0,<3.0.0)
15
- Requires-Dist: appdirs (>=1.4.4,<2.0.0)
16
- Requires-Dist: better-exceptions (>=0.3.3,<0.4.0)
17
- Requires-Dist: certifi (>=2025.0.0,<2026.0.0)
18
- Requires-Dist: chevron (>=0.14.0,<0.15.0)
19
- Requires-Dist: deepdiff (>=8.0.1,<9.0.0)
20
- Requires-Dist: msgpack (>=1.0.6,<2.0.0)
21
- Requires-Dist: ply (>=3.11,<4.0)
22
- Requires-Dist: pydantic (>=2.5.3,<3.0.0)
23
- Requires-Dist: pydantic-yaml (>=1.0.0,<2.0.0)
24
- Requires-Dist: pyfunctional (==1.5.0)
25
- Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
26
- Requires-Dist: pyyaml (>=6.0,<7.0)
27
- Requires-Dist: requests (>=2.28.1,<3.0.0)
28
- Requires-Dist: semver (>=3.0.1,<4.0.0)
29
- Requires-Dist: simpleeval (>=1.0.0,<2.0.0)
30
- Requires-Dist: urllib3 (>=2.0.0,<3.0.0)
31
- Description-Content-Type: text/markdown
32
-
33
- # Kodexa
34
-
35
- [![Build and Package with Poetry](https://github.com/kodexa-ai/kodexa/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/kodexa-ai/kodexa/actions/workflows/main.yml)
36
-
37
- ![img.png](https://docs.kodexa.com/img.png)
38
-
39
- Kodexa is a platform for building intelligent document processing pipelines. It is a set of tools and services that
40
- allow you to build a pipeline that can take a document, extract the content, and then process it to extract the
41
- information you need.
42
-
43
- It is built on a set of core principles:
44
-
45
- * **Document Centric** - Kodexa is built around the idea of a document. A document is a collection of content
46
- nodes that are connected together. This is a powerful model that allows you to build pipelines that can
47
- extract content from a wide range of sources.
48
-
49
- * **Pipeline Oriented** - Kodexa is built around the idea of a pipeline. A pipeline is a series of steps that
50
- can be executed on a document. This allows you to build a pipeline that can extract content from a wide range
51
- of sources.
52
-
53
- * **Extensible** - Kodexa is built around the idea of a pipeline. A pipeline is a series of steps that can be executed
54
- on a document. This allows you to build a pipeline that can extract content from a wide range of sources.
55
-
56
- * **Label Driven** - Kodexa focuses on the idea of labels. Labels are a way to identify content within a document
57
- and then use that content to drive the processing of the document.
58
-
59
- # Python SDK
60
-
61
- This repository contains the Python SDK for Kodexa. The SDK is the primary way to interact with Kodexa. It allows you to
62
- define actions, models, and pipelines that can be executed on Kodexa. It also includes a complete SDK client for
63
- working with a Kodexa platform instance.
64
-
65
- ## Documentation & Examples
66
-
67
- Documentation is available at the [Kodexa Support Portal](https://support.kodexa.ai)
68
-
69
- ## Set-up
70
-
71
- We use poetry to manage our dependencies, so you can install them with:
72
-
73
- poetry install
74
-
75
- You can then run the tests with:
76
-
77
- poetry run pytest
78
-
79
- # Contributing
80
-
81
- We welcome contributions to the Kodexa platform. Please see our [contributing guide](CONTRIBUTING.md) for more details.
82
-
83
- # License
84
-
85
- Apache 2.0
86
-
87
-