tellaro-query-language 0.2.3__tar.gz → 0.2.6__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.
- tellaro_query_language-0.2.6/LICENSE +72 -0
- tellaro_query_language-0.2.6/PKG-INFO +806 -0
- tellaro_query_language-0.2.6/README.md +774 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/pyproject.toml +5 -3
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/cache/base.py +36 -2
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/cache/memory.py +53 -6
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/cache/redis.py +52 -11
- tellaro_query_language-0.2.6/src/tql/cli.py +484 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core.py +244 -5
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator.py +1 -1
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator_components/special_expressions.py +62 -10
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator_components/value_comparison.py +0 -4
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/exceptions.py +6 -4
- tellaro_query_language-0.2.6/src/tql/field_type_inference.py +285 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/geo.py +57 -20
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_components/query_converter.py +1 -1
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_stats.py +7 -6
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser.py +7 -3
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/post_processor.py +8 -4
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/scripts.py +3 -3
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/stats_evaluator.py +357 -5
- tellaro_query_language-0.2.6/src/tql/streaming_file_processor.py +335 -0
- tellaro_query_language-0.2.3/LICENSE +0 -21
- tellaro_query_language-0.2.3/PKG-INFO +0 -433
- tellaro_query_language-0.2.3/README.md +0 -402
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/analyzer.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/cache/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/README.md +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/file_operations.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/opensearch_operations.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/stats_operations.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/core_components/validation_operations.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator_components/README.md +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator_components/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/evaluator_components/field_access.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/geoip_normalizer.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutator_analyzer.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/base.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/dns.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/encoding.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/list.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/network.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/security.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/mutators/string.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_components/README.md +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_components/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_components/field_mapping.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_components/lucene_converter.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/opensearch_mappings.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/README.md +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/__init__.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/ast_builder.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/error_analyzer.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/field_extractor.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/parser_components/grammar.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/src/tql/stats_transformer.py +0 -0
- {tellaro_query_language-0.2.3 → tellaro_query_language-0.2.6}/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
|