kodexa 7.5.514404640805__py3-none-any.whl → 8.0.14958192442__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/dataclasses/__init__.py +1 -1
- kodexa/model/__init__.py +2 -2
- kodexa/model/objects.py +21 -1
- kodexa/model/utils.py +1 -1
- kodexa/pipeline/pipeline.py +1 -1
- kodexa/platform/client.py +1 -2
- kodexa/platform/kodexa.py +4 -1
- kodexa/platform/manifest.py +447 -0
- kodexa/selectors/__init__.py +1 -1
- kodexa/selectors/ast.py +371 -98
- kodexa/selectors/error.py +29 -0
- kodexa/selectors/kodexa-ast-visitor.py +268 -0
- kodexa/selectors/parser.py +91 -0
- kodexa/selectors/resources/KodexaSelector.interp +99 -0
- kodexa/selectors/resources/KodexaSelector.tokens +56 -0
- kodexa/selectors/resources/KodexaSelectorLexer.interp +119 -0
- kodexa/selectors/resources/KodexaSelectorLexer.py +204 -0
- kodexa/selectors/resources/KodexaSelectorLexer.tokens +56 -0
- kodexa/selectors/resources/KodexaSelectorListener.py +570 -0
- kodexa/selectors/resources/KodexaSelectorParser.py +3246 -0
- kodexa/selectors/resources/KodexaSelectorVisitor.py +323 -0
- kodexa/selectors/visitor.py +265 -0
- kodexa/steps/__init__.py +4 -2
- kodexa/steps/common.py +0 -68
- kodexa/testing/test_utils.py +1 -1
- {kodexa-7.5.514404640805.dist-info → kodexa-8.0.14958192442.dist-info}/METADATA +7 -3
- kodexa-8.0.14958192442.dist-info/RECORD +53 -0
- {kodexa-7.5.514404640805.dist-info → kodexa-8.0.14958192442.dist-info}/WHEEL +1 -1
- kodexa/model/model.py +0 -3259
- kodexa/model/persistence.py +0 -2017
- kodexa/selectors/core.py +0 -124
- kodexa/selectors/lexrules.py +0 -137
- kodexa/selectors/lextab.py +0 -83
- kodexa/selectors/lextab.pyi +0 -1
- kodexa/selectors/parserules.py +0 -414
- kodexa/selectors/parserules.pyi +0 -1
- kodexa/selectors/parsetab.py +0 -4149
- kodexa/selectors/parsetab.pyi +0 -1
- kodexa-7.5.514404640805.dist-info/RECORD +0 -50
- {kodexa-7.5.514404640805.dist-info → kodexa-8.0.14958192442.dist-info}/LICENSE +0 -0
@@ -1,22 +1,26 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: kodexa
|
3
|
-
Version:
|
3
|
+
Version: 8.0.14958192442
|
4
4
|
Summary: Python SDK for the Kodexa Platform
|
5
5
|
Author: Austin Redenbaugh
|
6
6
|
Author-email: austin@kodexa.com
|
7
|
-
Requires-Python: >=3.11,<
|
7
|
+
Requires-Python: >=3.11,<3.14
|
8
8
|
Classifier: Development Status :: 5 - Production/Stable
|
9
9
|
Classifier: Intended Audience :: Developers
|
10
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
13
15
|
Classifier: Topic :: Software Development :: Libraries
|
14
16
|
Requires-Dist: addict (>=2.4.0,<3.0.0)
|
17
|
+
Requires-Dist: antlr4-python3-runtime (>=4.13.2,<5.0.0)
|
15
18
|
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
|
16
19
|
Requires-Dist: better-exceptions (>=0.3.3,<0.4.0)
|
17
20
|
Requires-Dist: certifi (>=2025.0.0,<2026.0.0)
|
18
21
|
Requires-Dist: chevron (>=0.14.0,<0.15.0)
|
19
22
|
Requires-Dist: deepdiff (>=8.0.1,<9.0.0)
|
23
|
+
Requires-Dist: kodexa-document (>=8.0.0,<9.0.0)
|
20
24
|
Requires-Dist: msgpack (>=1.0.6,<2.0.0)
|
21
25
|
Requires-Dist: ply (>=3.11,<4.0)
|
22
26
|
Requires-Dist: pydantic (>=2.5.3,<3.0.0)
|
@@ -0,0 +1,53 @@
|
|
1
|
+
kodexa/__init__.py,sha256=nH7p-Rk5QXXeEBj-DSewxr1iGx8B82RNyWH7TITSBPI,957
|
2
|
+
kodexa/assistant/__init__.py,sha256=nlXm_YnV_50hgn0TIT2Fkc2fQ-86OjmctY_j8My9nc4,171
|
3
|
+
kodexa/assistant/assistant.py,sha256=5KFdbqFSLIZJyDRyZdpcfr448fT-CW4JhYu9A6B9DGY,14663
|
4
|
+
kodexa/connectors/__init__.py,sha256=WF6G_MUeU32TlKSUKkpNoNX7dq8iBPliFMep4E8BmZc,328
|
5
|
+
kodexa/connectors/connectors.py,sha256=FpUZDkSyHld2b9eYRuVOWzaFtuGoaRuPXXicJB7THbc,10413
|
6
|
+
kodexa/dataclasses/__init__.py,sha256=TTjLk2VzOZpptFqcZasGYu82K2LeRmJThI4abyKk_Os,19472
|
7
|
+
kodexa/dataclasses/templates/llm_data_class.j2,sha256=YWjStW136chV_59JM3AYis3i-0jdrqDvLXsISUW9zDU,660
|
8
|
+
kodexa/model/__init__.py,sha256=tw6b79hLNp8mk0lsjhcFHJspPUaI3kp1Ed4UPv9b_gY,806
|
9
|
+
kodexa/model/base.py,sha256=CaZK8nMhT1LdCpt4aLhebJGcorjq9qRID1FjnXnP14M,521
|
10
|
+
kodexa/model/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
+
kodexa/model/entities/check_response.py,sha256=eqBHxO6G2OAziL3p9bHGI-oiPkAG82H6Choc8wyvtM4,3949
|
12
|
+
kodexa/model/entities/product.py,sha256=StUhTEeLXmc05cj6XnZppQfeJsqCPbX1jdhsysHH--Q,5787
|
13
|
+
kodexa/model/entities/product_group.py,sha256=540fRGyUf34h1BzAN1DiWu6rGgvaj3xDFhZ2k-RvSFY,3617
|
14
|
+
kodexa/model/entities/product_subscription.py,sha256=UcmWR-qgLfdV7VCtJNwzgkanoS8nBSL6ngVuxQUK1M8,3810
|
15
|
+
kodexa/model/objects.py,sha256=kZKsIYqToZfA_F9rtrZHyyp2x3MOo35xh66zJcRCseM,200322
|
16
|
+
kodexa/model/utils.py,sha256=pZQ3N5TBqJPuldVcwq9Tkdhsk5mHo0OLbK-elW_lYoY,3036
|
17
|
+
kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
|
18
|
+
kodexa/pipeline/pipeline.py,sha256=aQF1l_Y3PTrdxZPOUSsrI4j-Jmr7BIA-c9edOcJ4XNM,25543
|
19
|
+
kodexa/platform/__init__.py,sha256=1O3oiWMg292NPL_NacKDnK1T3_R6cMorrPRue_9e-O4,216
|
20
|
+
kodexa/platform/client.py,sha256=aJbXeoAHrIGlTfCIdjI8rq09ltHJAt8oicjthuGf6LQ,236008
|
21
|
+
kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
|
22
|
+
kodexa/platform/kodexa.py,sha256=2s7Ez7_o-ywpNwbTRhtOUaQKtB9hKsDC_oJHaskXw-I,35315
|
23
|
+
kodexa/platform/manifest.py,sha256=ThjQOk0xbP0qACcpS8NM6-zQL_Emd_bv4QAW2FpbUWk,19454
|
24
|
+
kodexa/selectors/__init__.py,sha256=xDSAiNsvzifn33eluwLY6fOKQKuztuQCAmtiLSM9ao0,102
|
25
|
+
kodexa/selectors/ast.py,sha256=xV5Vx1xnpr0LhcDo9p0TcSoPWChpzLFHeScApQvLBi4,23628
|
26
|
+
kodexa/selectors/error.py,sha256=EuDKv7CTc113LB-qbPoxQUQJzzUNrQSSBHsXACw2Vag,801
|
27
|
+
kodexa/selectors/kodexa-ast-visitor.py,sha256=mTxvfcoQZ-Dbrs55ZR0FBQzINUfvHNbivlXo6rOcvCU,11006
|
28
|
+
kodexa/selectors/parser.py,sha256=2bA8-kezf7zLCZTe6jZhCSIxDMLSNkLCaD-G_xy7LKI,2894
|
29
|
+
kodexa/selectors/resources/KodexaSelector.interp,sha256=e55wpEvyCYWfEX0aqrtykDNxFkVeoFN9ZoN7tOuspMo,7997
|
30
|
+
kodexa/selectors/resources/KodexaSelector.tokens,sha256=mmZ_Ig9Lmr_Zs5z33yL6kV0mVpOxgSWEmzjaf8KsIrs,541
|
31
|
+
kodexa/selectors/resources/KodexaSelectorLexer.interp,sha256=8RQTI50ecwGgEBqEQL-GKc89n6_8NweeOROyIPbQvI0,11155
|
32
|
+
kodexa/selectors/resources/KodexaSelectorLexer.py,sha256=86yCFXYCTkEEwwRePD5Bxgn4-snIu41WButj2EB3vxY,11227
|
33
|
+
kodexa/selectors/resources/KodexaSelectorLexer.tokens,sha256=mmZ_Ig9Lmr_Zs5z33yL6kV0mVpOxgSWEmzjaf8KsIrs,541
|
34
|
+
kodexa/selectors/resources/KodexaSelectorListener.py,sha256=wuF1W5A-uWiWHZRD3b1lyPZrdeKoRrbcawAdavwr6to,20887
|
35
|
+
kodexa/selectors/resources/KodexaSelectorParser.py,sha256=vi7LmJ-Uq7FXtmSf4AexA6ck7lbszAGn6eE67J9d_1A,120853
|
36
|
+
kodexa/selectors/resources/KodexaSelectorVisitor.py,sha256=i3v6HcMwhb4MxykV8nnfnHGws3syMsF_jOOMVPPMv5A,12351
|
37
|
+
kodexa/selectors/visitor.py,sha256=AwqASBmmsZKgwNASRU2pYTi_fruoSof4bzD3Whmv8vs,10965
|
38
|
+
kodexa/spatial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
+
kodexa/spatial/azure_models.py,sha256=Jw4abHIWl4dVScxC-a9QAsnFa8V3HisTmh0b0MFHCXQ,30564
|
40
|
+
kodexa/spatial/bbox_common.py,sha256=mbylO-s8KsK9p6nAwjq6DTaxEHhLZ0Nx4d3US82f5ZE,5975
|
41
|
+
kodexa/spatial/table_form_common.py,sha256=qJIqr6INNFTe8EPrXchZ9a1ZgS9dZnhx_wgvd6A41XQ,44214
|
42
|
+
kodexa/steps/__init__.py,sha256=MXDlSPnVeHuvLRtdQa2X15qRmgys74WNdvit70Yh1NM,217
|
43
|
+
kodexa/steps/common.py,sha256=k4Dax9k2E4En_cJ-tr-cLL9G3IqelkKc0zTaBcYrBmI,8026
|
44
|
+
kodexa/testing/__init__.py,sha256=P8W-SOnWsi48asfnQV06iyHrzZAzuX69j9oYwBvgp5s,323
|
45
|
+
kodexa/testing/test_components.py,sha256=g5lP-GY0nTHuH5cIEw45vIejEeBaWkPKQGHL36jejBQ,1052
|
46
|
+
kodexa/testing/test_utils.py,sha256=uEQIxweaPHcwcpoSNljmS0ae24OBn6npqbwyd7-wE5g,14157
|
47
|
+
kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
|
48
|
+
kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
kodexa/utils/__init__.py,sha256=Pnim1o9_db5YEnNvDTxpM7HG-qTlL6n8JwFwOafU9wo,5928
|
50
|
+
kodexa-8.0.14958192442.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
51
|
+
kodexa-8.0.14958192442.dist-info/METADATA,sha256=TEDR8N3k2UJCLYbe3JFOWqGghgFCLdvdD8dcQDPND9U,3019
|
52
|
+
kodexa-8.0.14958192442.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
53
|
+
kodexa-8.0.14958192442.dist-info/RECORD,,
|