deltafi 0.109.0__py3-none-any.whl → 2.40.0__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.
- deltafi/__init__.py +3 -1
- deltafi/action.py +262 -102
- deltafi/actioneventqueue.py +29 -4
- deltafi/actiontype.py +7 -11
- deltafi/domain.py +241 -88
- deltafi/exception.py +1 -11
- deltafi/genericmodel.py +38 -0
- deltafi/input.py +6 -163
- deltafi/logger.py +16 -4
- deltafi/lookuptable.py +292 -0
- deltafi/metric.py +2 -2
- deltafi/plugin.py +374 -87
- deltafi/result.py +174 -172
- deltafi/resultmessage.py +56 -0
- deltafi/storage.py +20 -90
- deltafi/test_kit/__init__.py +19 -0
- deltafi/test_kit/assertions.py +56 -0
- deltafi/test_kit/compare_helpers.py +293 -0
- deltafi/test_kit/constants.py +23 -0
- deltafi/test_kit/egress.py +54 -0
- deltafi/test_kit/framework.py +390 -0
- deltafi/test_kit/timed_ingress.py +104 -0
- deltafi/test_kit/transform.py +103 -0
- deltafi/types.py +31 -0
- deltafi-2.40.0.dist-info/METADATA +82 -0
- deltafi-2.40.0.dist-info/RECORD +27 -0
- {deltafi-0.109.0.dist-info → deltafi-2.40.0.dist-info}/WHEEL +1 -1
- deltafi-0.109.0.dist-info/METADATA +0 -41
- deltafi-0.109.0.dist-info/RECORD +0 -15
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deltafi
|
|
3
|
+
Version: 2.40.0
|
|
4
|
+
Summary: SDK for DeltaFi plugins and actions
|
|
5
|
+
Project-URL: Source Code, https://gitlab.com/deltafi/deltafi
|
|
6
|
+
Project-URL: Documentation, https://docs.deltafi.org/#/
|
|
7
|
+
Project-URL: Bug Reports, https://chat.deltafi.org/deltafi/channels/bug-reports
|
|
8
|
+
Author-email: DeltaFi <deltafi@systolic.com>
|
|
9
|
+
License: Apache License, Version 2.0
|
|
10
|
+
Keywords: deltafi
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Topic :: Software Development
|
|
18
|
+
Requires-Python: <3.14,>=3.13
|
|
19
|
+
Requires-Dist: deepdiff==8.6.1
|
|
20
|
+
Requires-Dist: json-logging==1.5.1
|
|
21
|
+
Requires-Dist: minio==7.2.18
|
|
22
|
+
Requires-Dist: pydantic==2.12.2
|
|
23
|
+
Requires-Dist: pyyaml==6.0.3
|
|
24
|
+
Requires-Dist: redis==6.4.0
|
|
25
|
+
Requires-Dist: requests==2.32.5
|
|
26
|
+
Requires-Dist: urllib3==2.5.0
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: mypy>=1.18.2; extra == 'dev'
|
|
29
|
+
Requires-Dist: ruff>=0.14.0; extra == 'dev'
|
|
30
|
+
Provides-Extra: test
|
|
31
|
+
Requires-Dist: mockito==1.5.4; extra == 'test'
|
|
32
|
+
Requires-Dist: pytest-mock==3.15.1; extra == 'test'
|
|
33
|
+
Requires-Dist: pytest==8.4.2; extra == 'test'
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
# DeltaFi Action Kit
|
|
37
|
+
|
|
38
|
+
This project provides a Python implementation of the DeltaFi Action Kit. The DeltaFi Action Kit is a setup of modules which simplify the creation of a DeltaFi Plugin.
|
|
39
|
+
|
|
40
|
+
## Development Setup
|
|
41
|
+
|
|
42
|
+
This project uses [uv](https://github.com/astral-sh/uv) for dependency management and building. uv is a fast Python package installer and resolver.
|
|
43
|
+
|
|
44
|
+
### Prerequisites
|
|
45
|
+
|
|
46
|
+
- Python 3.13 or higher
|
|
47
|
+
- uv (will be installed automatically via the build process)
|
|
48
|
+
|
|
49
|
+
### Building and Testing
|
|
50
|
+
|
|
51
|
+
The project uses Gradle to orchestrate the build process with uv:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
# Build the project
|
|
55
|
+
./gradlew assemble
|
|
56
|
+
|
|
57
|
+
# Run tests
|
|
58
|
+
./gradlew test
|
|
59
|
+
|
|
60
|
+
# Clean build artifacts
|
|
61
|
+
./gradlew clean
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Manual Development
|
|
65
|
+
|
|
66
|
+
For manual development without Gradle:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
cd src
|
|
70
|
+
|
|
71
|
+
# Install uv if not already installed
|
|
72
|
+
brew install uv || pip install uv
|
|
73
|
+
|
|
74
|
+
# Install dependencies
|
|
75
|
+
uv pip install -e .[test]
|
|
76
|
+
|
|
77
|
+
# Run tests
|
|
78
|
+
uv run pytest
|
|
79
|
+
|
|
80
|
+
# Build package
|
|
81
|
+
uv build
|
|
82
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
deltafi/__init__.py,sha256=FHwsfe4TgGeVLINN6940urXAzxGvl_Hof0gmOB32N7Y,709
|
|
2
|
+
deltafi/action.py,sha256=cQb2ggEvnvebfNopqmCerk0jRJ2VzjGa1MrxkwCWd5A,12903
|
|
3
|
+
deltafi/actioneventqueue.py,sha256=xM4UxDywa6Mck_Qmo-D_SaCmpbVsxpbouS6C8h0wE-M,3035
|
|
4
|
+
deltafi/actiontype.py,sha256=2FnTbryP2zVlJfghrh9IqhIHWarPfSKSKt2UxoIrGLU,913
|
|
5
|
+
deltafi/domain.py,sha256=4tj5DFw6nsSZo9KG5LmUb3-IETRzth_wOt38VVT74HE,13720
|
|
6
|
+
deltafi/exception.py,sha256=t-Qr3PBp5vdvUeABMFg2iLl6x6Uy3PJl5uxENsnY4kM,943
|
|
7
|
+
deltafi/genericmodel.py,sha256=0qgii2o-fzHS6lM1C5X7_WTTSYsiZAM0i7RTfw0nw4U,1152
|
|
8
|
+
deltafi/input.py,sha256=0ebhATZ2ISO2n26wzku5v34k1HiCOGSb6QNWYw8wE2c,1856
|
|
9
|
+
deltafi/logger.py,sha256=4AU16WlQ98XvTfYf5XnJzURohtsTZg9e5kbfPCKic-g,2378
|
|
10
|
+
deltafi/lookuptable.py,sha256=7S3e7vHlb5dDSoLNoC_najwS4YWWcZbZADQ1CzjPFO4,11415
|
|
11
|
+
deltafi/metric.py,sha256=5Q40bLpNXk8mwu1wnN5L8GX22-iZxYEFBGt3zSNmYxI,972
|
|
12
|
+
deltafi/plugin.py,sha256=MvbZrX5GllRh0085R7aDlO70yoGiJ0FeofrSihUppoI,20864
|
|
13
|
+
deltafi/result.py,sha256=J22nYPWyFgawGBmP8qfDu3RztBmrXDhHViqljNPoyRU,10140
|
|
14
|
+
deltafi/resultmessage.py,sha256=jYCvKKlFAWuA5YfOE30w3TH294M4EuTEowROc6LkZzE,1767
|
|
15
|
+
deltafi/storage.py,sha256=PMkVQ27PdRCWze89jB96LCF0xq28w3OyEqrMVbjZXJo,3061
|
|
16
|
+
deltafi/types.py,sha256=1JubDkrKEHpp2wnWFN9NTVRESRsBbSiTkxdA1NABBbk,1081
|
|
17
|
+
deltafi/test_kit/__init__.py,sha256=FHwsfe4TgGeVLINN6940urXAzxGvl_Hof0gmOB32N7Y,709
|
|
18
|
+
deltafi/test_kit/assertions.py,sha256=itKLaI22PoiiDLHNrvRAAohcrKsbKuW5-ba0sg7J780,1594
|
|
19
|
+
deltafi/test_kit/compare_helpers.py,sha256=1p0HbjR76K2_QZ4ODfw1V_zuR7rcKqRSoSA351L-qWo,12957
|
|
20
|
+
deltafi/test_kit/constants.py,sha256=7Z8m3a-8_t2wYdCMNvxfShQo2bvoOV9PjVMJX4y5yZY,833
|
|
21
|
+
deltafi/test_kit/egress.py,sha256=DhWfVUSFx_V94rtLpohEKvlXlSfoY8P3Yjd4lj2smfQ,1955
|
|
22
|
+
deltafi/test_kit/framework.py,sha256=9m7opcSVMmQHA1x0E0DAtSWKHZU5y-0A5sPng_im81A,16591
|
|
23
|
+
deltafi/test_kit/timed_ingress.py,sha256=qfZIpbl4ESKRJNO9UsO-jvB4iVI7RZWGGYbPrMhfROs,4290
|
|
24
|
+
deltafi/test_kit/transform.py,sha256=CLtcP3GputylMrO73_P4Tbu33Y4Auelp2318gTnLxhU,4179
|
|
25
|
+
deltafi-2.40.0.dist-info/METADATA,sha256=iyLJz7e2j6I49EgL7n7qwUeYGpIx7OVicbcyEZgXZEQ,2262
|
|
26
|
+
deltafi-2.40.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
27
|
+
deltafi-2.40.0.dist-info/RECORD,,
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: deltafi
|
|
3
|
-
Version: 0.109.0
|
|
4
|
-
Summary: SDK for DeltaFi plugins and actions
|
|
5
|
-
License: Apache License, Version 2.0
|
|
6
|
-
Keywords: deltafi
|
|
7
|
-
Author: DeltaFi
|
|
8
|
-
Author-email: deltafi@systolic.com
|
|
9
|
-
Requires-Python: >=3.7,<4.0
|
|
10
|
-
Classifier: Development Status :: 4 - Beta
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
-
Classifier: License :: Other/Proprietary License
|
|
14
|
-
Classifier: Operating System :: OS Independent
|
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
-
Classifier: Programming Language :: Python :: 3
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
25
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
26
|
-
Classifier: Topic :: Software Development
|
|
27
|
-
Requires-Dist: json-logging (==1.3.0)
|
|
28
|
-
Requires-Dist: minio (==7.1.12)
|
|
29
|
-
Requires-Dist: pydantic (==1.10.2)
|
|
30
|
-
Requires-Dist: redis (==4.3.4)
|
|
31
|
-
Requires-Dist: requests (==2.28.1)
|
|
32
|
-
Requires-Dist: urllib3 (==1.26.12)
|
|
33
|
-
Project-URL: Bug Reports, https://chat.deltafi.org/deltafi/channels/bug-reports
|
|
34
|
-
Project-URL: Documentation, https://docs.deltafi.org/#/
|
|
35
|
-
Project-URL: Source Code, https://gitlab.com/deltafi/deltafi
|
|
36
|
-
Description-Content-Type: text/markdown
|
|
37
|
-
|
|
38
|
-
# DeltaFi Action Kit
|
|
39
|
-
|
|
40
|
-
This project provides a Python implementation of the DeltaFi Action Kit. The DeltaFi Action Kit is a setup of modules which simplify the creation of a DeltaFi Plugin.
|
|
41
|
-
|
deltafi-0.109.0.dist-info/RECORD
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
deltafi/__init__.py,sha256=PNMUt1SbY5DhoTxle11dPv21Pr_bo8paVc7TVu4Cs7E,706
|
|
2
|
-
deltafi/action.py,sha256=ZB6YjEobOkaEBMOmrO4XvHLT7W0CiXC0Z5RfhJKtsVs,7326
|
|
3
|
-
deltafi/actioneventqueue.py,sha256=HR1n-Co5Nq8IarYKR7Uzydi8mkCdOZbC-yJWHuA6KwA,1981
|
|
4
|
-
deltafi/actiontype.py,sha256=gt8j4PgYuxoRbif5-FJi1fu4eLSy2J4oVbQ2qceRgqM,985
|
|
5
|
-
deltafi/domain.py,sha256=oe1TfarDjD3JmMgmAHs-NI3Q3PHx_EX7gtr6_PHcW_s,9417
|
|
6
|
-
deltafi/exception.py,sha256=qQ2TY2QPtMU9t5RH8jmFo_cX98AJ-zOFWP_Wfm5U6qQ,1149
|
|
7
|
-
deltafi/input.py,sha256=yw6Y1fboQWnidlGTVO9C4dWcVjckvMERxjNsCUg-ZDc,6284
|
|
8
|
-
deltafi/logger.py,sha256=q76R_Gn8BfcASH3Zy0V82m5ot34bjTnSELyKbjhvx3E,2136
|
|
9
|
-
deltafi/metric.py,sha256=eIDjZQVO53KuAFoEtjLNFwqMrp_7BC0Td9GLD1tb6sE,967
|
|
10
|
-
deltafi/plugin.py,sha256=Y9fo8cLqI1e27vPwas9mxsXRwudDJR5KqY-JMCcjZkY,8553
|
|
11
|
-
deltafi/result.py,sha256=tPDvs9jKS4otBS4fwIDku_I_XCcw7wxKTaxyaCRuwJ0,10115
|
|
12
|
-
deltafi/storage.py,sha256=MFv6Su0nZ-l-Kb1q0ZXCbRh6FdzbNskmPEZqv3mBrWY,5594
|
|
13
|
-
deltafi-0.109.0.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
|
14
|
-
deltafi-0.109.0.dist-info/METADATA,sha256=9D7fhbRFA7PJT2-FojNzBeNTWVcR3i9CK3DuADvX3W8,1703
|
|
15
|
-
deltafi-0.109.0.dist-info/RECORD,,
|