tellaro-query-language 0.2.2__tar.gz → 0.2.5__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 (63) hide show
  1. tellaro_query_language-0.2.5/LICENSE +72 -0
  2. tellaro_query_language-0.2.5/PKG-INFO +806 -0
  3. tellaro_query_language-0.2.5/README.md +774 -0
  4. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/pyproject.toml +23 -3
  5. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/__init__.py +1 -1
  6. tellaro_query_language-0.2.5/src/tql/cache/base.py +97 -0
  7. tellaro_query_language-0.2.5/src/tql/cache/memory.py +171 -0
  8. tellaro_query_language-0.2.5/src/tql/cli.py +484 -0
  9. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core.py +261 -5
  10. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/opensearch_operations.py +23 -4
  11. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator.py +3 -1
  12. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator_components/special_expressions.py +62 -10
  13. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator_components/value_comparison.py +70 -12
  14. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/exceptions.py +6 -4
  15. tellaro_query_language-0.2.5/src/tql/field_type_inference.py +285 -0
  16. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutator_analyzer.py +2 -2
  17. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/geo.py +57 -20
  18. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_components/query_converter.py +1 -1
  19. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_stats.py +10 -7
  20. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser.py +56 -21
  21. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/post_processor.py +44 -11
  22. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/scripts.py +19 -2
  23. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/stats_evaluator.py +361 -7
  24. tellaro_query_language-0.2.5/src/tql/streaming_file_processor.py +335 -0
  25. tellaro_query_language-0.2.2/LICENSE +0 -21
  26. tellaro_query_language-0.2.2/PKG-INFO +0 -433
  27. tellaro_query_language-0.2.2/README.md +0 -402
  28. tellaro_query_language-0.2.2/src/tql/cache/base.py +0 -25
  29. tellaro_query_language-0.2.2/src/tql/cache/memory.py +0 -63
  30. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/analyzer.py +0 -0
  31. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/cache/__init__.py +0 -0
  32. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/cache/redis.py +0 -0
  33. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/README.md +0 -0
  34. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/__init__.py +0 -0
  35. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/file_operations.py +0 -0
  36. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/stats_operations.py +0 -0
  37. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/core_components/validation_operations.py +0 -0
  38. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator_components/README.md +0 -0
  39. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator_components/__init__.py +0 -0
  40. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/evaluator_components/field_access.py +0 -0
  41. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/geoip_normalizer.py +0 -0
  42. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/__init__.py +0 -0
  43. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/base.py +0 -0
  44. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/dns.py +0 -0
  45. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/encoding.py +0 -0
  46. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/list.py +0 -0
  47. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/network.py +0 -0
  48. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/security.py +0 -0
  49. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/mutators/string.py +0 -0
  50. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch.py +0 -0
  51. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_components/README.md +0 -0
  52. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_components/__init__.py +0 -0
  53. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_components/field_mapping.py +0 -0
  54. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_components/lucene_converter.py +0 -0
  55. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/opensearch_mappings.py +0 -0
  56. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/README.md +0 -0
  57. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/__init__.py +0 -0
  58. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/ast_builder.py +0 -0
  59. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/error_analyzer.py +0 -0
  60. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/field_extractor.py +0 -0
  61. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/parser_components/grammar.py +0 -0
  62. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/stats_transformer.py +0 -0
  63. {tellaro_query_language-0.2.2 → tellaro_query_language-0.2.5}/src/tql/validators.py +0 -0
@@ -0,0 +1,72 @@
1
+ Tellaro Query Language (TQL) License
2
+ Copyright (c) 2024 Tellaro
3
+
4
+ TERMS AND CONDITIONS
5
+
6
+ 1. DEFINITIONS
7
+ "Software" refers to the Tellaro Query Language (TQL) and all associated
8
+ documentation, source code, and binary distributions.
9
+
10
+ "Personal Use" means use by an individual for non-commercial purposes.
11
+
12
+ "Organizational Use" means use within a single organization for that
13
+ organization's internal operations, whether commercial or non-commercial.
14
+
15
+ "Derivative Work" means any software that is based on, derived from, or
16
+ substantially similar to the Software, including but not limited to modified
17
+ versions, forks, or competing query language implementations.
18
+
19
+ 2. GRANT OF LICENSE
20
+ Subject to the terms and conditions of this license, Tellaro hereby grants
21
+ you a limited, non-exclusive, non-transferable, royalty-free license to:
22
+
23
+ a) Use the Software for Personal Use or Organizational Use
24
+ b) Copy and distribute unmodified versions of the Software within your
25
+ organization
26
+ c) Integrate the Software into your applications and services for your
27
+ organization's use
28
+
29
+ 3. RESTRICTIONS
30
+ You may NOT:
31
+
32
+ a) Create, distribute, or commercialize Derivative Works
33
+ b) Use the Software's source code to create competing query language
34
+ products or services
35
+ c) Remove or modify any copyright notices, license terms, or attribution
36
+ from the Software
37
+ d) Use the Software to provide commercial query language services to
38
+ third parties
39
+ e) Sublicense, sell, rent, lease, or otherwise transfer rights to the
40
+ Software to third parties
41
+ f) Use the Software in any way that violates applicable laws or regulations
42
+
43
+ 4. ATTRIBUTION
44
+ You must retain all copyright notices and give appropriate credit to Tellaro
45
+ in any applications or documentation that incorporate the Software.
46
+
47
+ 5. COMMERCIAL LICENSING
48
+ For commercial redistribution, creating derivative works, or using the
49
+ Software in commercial query language products/services, you must obtain
50
+ a separate commercial license from Tellaro.
51
+
52
+ Contact: support@tellaro.io
53
+
54
+ 6. NO WARRANTY
55
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
56
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
57
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
58
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
59
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
60
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
61
+ SOFTWARE.
62
+
63
+ 7. TERMINATION
64
+ This license automatically terminates if you violate any of its terms. Upon
65
+ termination, you must cease all use and destroy all copies of the Software.
66
+
67
+ 8. GOVERNING LAW
68
+ This license shall be governed by and construed in accordance with the laws
69
+ of the jurisdiction in which Tellaro is registered, without regard to its
70
+ conflict of law provisions.
71
+
72
+ For questions about licensing, contact: support@tellaro.io