kyvvu-engine 0.3.0__tar.gz

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.
Files changed (46) hide show
  1. kyvvu_engine-0.3.0/LICENSE +112 -0
  2. kyvvu_engine-0.3.0/PKG-INFO +1144 -0
  3. kyvvu_engine-0.3.0/README.md +1001 -0
  4. kyvvu_engine-0.3.0/kyvvu_engine/__init__.py +58 -0
  5. kyvvu_engine-0.3.0/kyvvu_engine/__version__.py +4 -0
  6. kyvvu_engine-0.3.0/kyvvu_engine/_cli.py +58 -0
  7. kyvvu_engine-0.3.0/kyvvu_engine/aggregation.py +103 -0
  8. kyvvu_engine-0.3.0/kyvvu_engine/engine.py +516 -0
  9. kyvvu_engine-0.3.0/kyvvu_engine/io/__init__.py +18 -0
  10. kyvvu_engine-0.3.0/kyvvu_engine/io/disk_cache.py +87 -0
  11. kyvvu_engine-0.3.0/kyvvu_engine/io/exceptions.py +34 -0
  12. kyvvu_engine-0.3.0/kyvvu_engine/io/http.py +4 -0
  13. kyvvu_engine-0.3.0/kyvvu_engine/io/instance.py +30 -0
  14. kyvvu_engine-0.3.0/kyvvu_engine/io/runner.py +892 -0
  15. kyvvu_engine-0.3.0/kyvvu_engine/io/settings.py +261 -0
  16. kyvvu_engine-0.3.0/kyvvu_engine/logging.py +103 -0
  17. kyvvu_engine-0.3.0/kyvvu_engine/path_tracker.py +120 -0
  18. kyvvu_engine-0.3.0/kyvvu_engine/policy_store.py +153 -0
  19. kyvvu_engine-0.3.0/kyvvu_engine/rules/__init__.py +33 -0
  20. kyvvu_engine-0.3.0/kyvvu_engine/rules/_context.py +172 -0
  21. kyvvu_engine-0.3.0/kyvvu_engine/rules/_helpers.py +142 -0
  22. kyvvu_engine-0.3.0/kyvvu_engine/rules/_registry.py +121 -0
  23. kyvvu_engine-0.3.0/kyvvu_engine/rules/classification.py +103 -0
  24. kyvvu_engine-0.3.0/kyvvu_engine/rules/content.py +75 -0
  25. kyvvu_engine-0.3.0/kyvvu_engine/rules/count.py +126 -0
  26. kyvvu_engine-0.3.0/kyvvu_engine/rules/field.py +83 -0
  27. kyvvu_engine-0.3.0/kyvvu_engine/rules/flow.py +254 -0
  28. kyvvu_engine-0.3.0/kyvvu_engine/rules/path.py +330 -0
  29. kyvvu_engine-0.3.0/kyvvu_engine/schemas.py +498 -0
  30. kyvvu_engine-0.3.0/kyvvu_engine/serve/__init__.py +4 -0
  31. kyvvu_engine-0.3.0/kyvvu_engine/serve/app.py +70 -0
  32. kyvvu_engine-0.3.0/kyvvu_engine/serve/deps.py +26 -0
  33. kyvvu_engine-0.3.0/kyvvu_engine/serve/routes.py +145 -0
  34. kyvvu_engine-0.3.0/kyvvu_engine.egg-info/PKG-INFO +1144 -0
  35. kyvvu_engine-0.3.0/kyvvu_engine.egg-info/SOURCES.txt +44 -0
  36. kyvvu_engine-0.3.0/kyvvu_engine.egg-info/dependency_links.txt +1 -0
  37. kyvvu_engine-0.3.0/kyvvu_engine.egg-info/requires.txt +11 -0
  38. kyvvu_engine-0.3.0/kyvvu_engine.egg-info/top_level.txt +2 -0
  39. kyvvu_engine-0.3.0/pyproject.toml +70 -0
  40. kyvvu_engine-0.3.0/setup.cfg +4 -0
  41. kyvvu_engine-0.3.0/tests/test_behavior_validation.py +248 -0
  42. kyvvu_engine-0.3.0/tests/test_e2e_scenarios.py +707 -0
  43. kyvvu_engine-0.3.0/tests/test_engine.py +468 -0
  44. kyvvu_engine-0.3.0/tests/test_engine_contract.py +639 -0
  45. kyvvu_engine-0.3.0/tests/test_hardening.py +239 -0
  46. kyvvu_engine-0.3.0/tests/test_latency.py +287 -0
@@ -0,0 +1,112 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Kyvvu B.V.
6
+
7
+ Licensed Work: Kyvvu Engine. The Licensed Work is © 2026 Kyvvu B.V.
8
+ The Licensed Work consists of the contents of the
9
+ kyvvu-engine/ directory of the Kyvvu monorepo,
10
+ including all source code, configuration, atomic
11
+ behavior definitions, and accompanying files.
12
+
13
+ Additional Use Grant: You may make use of the Licensed Work, provided that
14
+ your use does not constitute a "Production Use." A
15
+ "Production Use" is any use of the Licensed Work other
16
+ than for development, testing, research, evaluation,
17
+ or personal non-commercial purposes. Production Use of
18
+ the Licensed Work requires a commercial subscription
19
+ to Kyvvu's hosted service or a separate commercial
20
+ license agreement with Licensor.
21
+
22
+ Notwithstanding the foregoing, you may not use the
23
+ Licensed Work to offer a commercial product or service
24
+ to third parties whose value derives, in whole or in
25
+ substantial part, from the policy enforcement,
26
+ behavioral interception, or runtime governance
27
+ functionality of the Licensed Work.
28
+
29
+ Change Date: Four (4) years from the date the specific version of
30
+ the Licensed Work is first made publicly available by
31
+ the Licensor.
32
+
33
+ Change License: Apache License, Version 2.0
34
+
35
+ -----------------------------------------------------------------------------
36
+
37
+ Terms
38
+
39
+ The Licensor hereby grants you the right to copy, modify, create derivative
40
+ works, redistribute, and make non-production use of the Licensed Work. The
41
+ Licensor may make an Additional Use Grant, above, permitting limited
42
+ production use.
43
+
44
+ Effective on the Change Date, or the fourth anniversary of the first publicly
45
+ available distribution of a specific version of the Licensed Work under this
46
+ License, whichever comes first, the Licensor hereby grants you rights under
47
+ the terms of the Change License, and the rights granted in the paragraph
48
+ above terminate.
49
+
50
+ If your use of the Licensed Work does not comply with the requirements
51
+ currently in effect as described in this License, you must purchase a
52
+ commercial license from the Licensor, its affiliated entities, or authorized
53
+ resellers, or you must refrain from using the Licensed Work.
54
+
55
+ All copies of the original and modified Licensed Work, and derivative works
56
+ of the Licensed Work, are subject to this License. This License applies
57
+ separately for each version of the Licensed Work and the Change Date may vary
58
+ for each version of the Licensed Work released by Licensor.
59
+
60
+ You must conspicuously display this License on each original or modified copy
61
+ of the Licensed Work. If you receive the Licensed Work in original or
62
+ modified form from a third party, the terms and conditions set forth in this
63
+ License apply to your use of that work.
64
+
65
+ Any use of the Licensed Work in violation of this License will automatically
66
+ terminate your rights under this License for the current and all other
67
+ versions of the Licensed Work.
68
+
69
+ This License does not grant you any right in any trademark or logo of
70
+ Licensor or its affiliates (provided that you may use a trademark or logo of
71
+ Licensor as expressly required by this License).
72
+
73
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
74
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
75
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
76
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
77
+ TITLE.
78
+
79
+ MariaDB hereby grants you permission to use this License's text to license
80
+ your works, and to refer to it using the trademark "Business Source License",
81
+ as long as you comply with the Covenants of Licensor below.
82
+
83
+ -----------------------------------------------------------------------------
84
+
85
+ Covenants of Licensor
86
+
87
+ In consideration of the right to use this License's text and the "Business
88
+ Source License" name and trademark, Licensor covenants to MariaDB, and to all
89
+ other recipients of the licensed work to be provided by Licensor:
90
+
91
+ To specify as the Change License the GPL Version 2.0 or any later version, or
92
+ a license that is compatible with GPL Version 2.0 or a later version, where
93
+ "compatible" means that software provided under the Change License can be
94
+ included in a program with software provided under GPL Version 2.0 or a later
95
+ version. Licensor may specify additional Change Licenses without limitation.
96
+
97
+ To either: (a) specify an additional grant of rights to use that does not
98
+ impose any additional restriction on the right granted in this License, as the
99
+ Additional Use Grant; or (b) insert the text "None" to specify a Change Date.
100
+
101
+ Not to modify this License in any other way.
102
+
103
+ -----------------------------------------------------------------------------
104
+
105
+ Notice
106
+
107
+ The Business Source License (this document, or the "License") is not an Open
108
+ Source license. However, the Licensed Work will eventually be made available
109
+ under an Open Source License, as stated in this License.
110
+
111
+ License text copyright © 2024 MariaDB plc, All Rights Reserved.
112
+ "Business Source License" is a trademark of MariaDB plc.