onetick-py 1.162.2__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.
- locator_parser/__init__.py +0 -0
- locator_parser/acl.py +73 -0
- locator_parser/actions.py +266 -0
- locator_parser/common.py +365 -0
- locator_parser/io.py +41 -0
- locator_parser/locator.py +150 -0
- onetick/__init__.py +101 -0
- onetick/doc_utilities/__init__.py +3 -0
- onetick/doc_utilities/napoleon.py +40 -0
- onetick/doc_utilities/ot_doctest.py +140 -0
- onetick/doc_utilities/snippets.py +280 -0
- onetick/lib/__init__.py +4 -0
- onetick/lib/instance.py +138 -0
- onetick/py/__init__.py +290 -0
- onetick/py/_stack_info.py +89 -0
- onetick/py/_version.py +2 -0
- onetick/py/aggregations/__init__.py +11 -0
- onetick/py/aggregations/_base.py +645 -0
- onetick/py/aggregations/_docs.py +912 -0
- onetick/py/aggregations/compute.py +286 -0
- onetick/py/aggregations/functions.py +2216 -0
- onetick/py/aggregations/generic.py +104 -0
- onetick/py/aggregations/high_low.py +80 -0
- onetick/py/aggregations/num_distinct.py +83 -0
- onetick/py/aggregations/order_book.py +427 -0
- onetick/py/aggregations/other.py +1014 -0
- onetick/py/backports.py +26 -0
- onetick/py/cache.py +373 -0
- onetick/py/callback/__init__.py +5 -0
- onetick/py/callback/callback.py +275 -0
- onetick/py/callback/callbacks.py +131 -0
- onetick/py/compatibility.py +752 -0
- onetick/py/configuration.py +736 -0
- onetick/py/core/__init__.py +0 -0
- onetick/py/core/_csv_inspector.py +93 -0
- onetick/py/core/_internal/__init__.py +0 -0
- onetick/py/core/_internal/_manually_bound_value.py +6 -0
- onetick/py/core/_internal/_nodes_history.py +250 -0
- onetick/py/core/_internal/_op_utils/__init__.py +0 -0
- onetick/py/core/_internal/_op_utils/every_operand.py +9 -0
- onetick/py/core/_internal/_op_utils/is_const.py +10 -0
- onetick/py/core/_internal/_per_tick_scripts/tick_list_sort_template.script +121 -0
- onetick/py/core/_internal/_proxy_node.py +140 -0
- onetick/py/core/_internal/_state_objects.py +2307 -0
- onetick/py/core/_internal/_state_vars.py +87 -0
- onetick/py/core/_source/__init__.py +0 -0
- onetick/py/core/_source/_symbol_param.py +95 -0
- onetick/py/core/_source/schema.py +97 -0
- onetick/py/core/_source/source_methods/__init__.py +0 -0
- onetick/py/core/_source/source_methods/aggregations.py +810 -0
- onetick/py/core/_source/source_methods/applyers.py +296 -0
- onetick/py/core/_source/source_methods/columns.py +141 -0
- onetick/py/core/_source/source_methods/data_quality.py +301 -0
- onetick/py/core/_source/source_methods/debugs.py +270 -0
- onetick/py/core/_source/source_methods/drops.py +120 -0
- onetick/py/core/_source/source_methods/fields.py +619 -0
- onetick/py/core/_source/source_methods/filters.py +1001 -0
- onetick/py/core/_source/source_methods/joins.py +1393 -0
- onetick/py/core/_source/source_methods/merges.py +566 -0
- onetick/py/core/_source/source_methods/misc.py +1325 -0
- onetick/py/core/_source/source_methods/pandases.py +155 -0
- onetick/py/core/_source/source_methods/renames.py +356 -0
- onetick/py/core/_source/source_methods/sorts.py +183 -0
- onetick/py/core/_source/source_methods/switches.py +142 -0
- onetick/py/core/_source/source_methods/symbols.py +117 -0
- onetick/py/core/_source/source_methods/times.py +627 -0
- onetick/py/core/_source/source_methods/writes.py +702 -0
- onetick/py/core/_source/symbol.py +202 -0
- onetick/py/core/_source/tmp_otq.py +222 -0
- onetick/py/core/column.py +209 -0
- onetick/py/core/column_operations/__init__.py +0 -0
- onetick/py/core/column_operations/_methods/__init__.py +4 -0
- onetick/py/core/column_operations/_methods/_internal.py +28 -0
- onetick/py/core/column_operations/_methods/conversions.py +215 -0
- onetick/py/core/column_operations/_methods/methods.py +294 -0
- onetick/py/core/column_operations/_methods/op_types.py +150 -0
- onetick/py/core/column_operations/accessors/__init__.py +0 -0
- onetick/py/core/column_operations/accessors/_accessor.py +30 -0
- onetick/py/core/column_operations/accessors/decimal_accessor.py +92 -0
- onetick/py/core/column_operations/accessors/dt_accessor.py +464 -0
- onetick/py/core/column_operations/accessors/float_accessor.py +160 -0
- onetick/py/core/column_operations/accessors/str_accessor.py +1374 -0
- onetick/py/core/column_operations/base.py +1061 -0
- onetick/py/core/cut_builder.py +149 -0
- onetick/py/core/db_constants.py +20 -0
- onetick/py/core/eval_query.py +244 -0
- onetick/py/core/lambda_object.py +442 -0
- onetick/py/core/multi_output_source.py +193 -0
- onetick/py/core/per_tick_script.py +2253 -0
- onetick/py/core/query_inspector.py +465 -0
- onetick/py/core/source.py +1663 -0
- onetick/py/db/__init__.py +2 -0
- onetick/py/db/_inspection.py +1042 -0
- onetick/py/db/db.py +1423 -0
- onetick/py/db/utils.py +64 -0
- onetick/py/docs/__init__.py +0 -0
- onetick/py/docs/docstring_parser.py +112 -0
- onetick/py/docs/utils.py +81 -0
- onetick/py/functions.py +2354 -0
- onetick/py/license.py +188 -0
- onetick/py/log.py +88 -0
- onetick/py/math.py +947 -0
- onetick/py/misc.py +437 -0
- onetick/py/oqd/__init__.py +22 -0
- onetick/py/oqd/eps.py +1195 -0
- onetick/py/oqd/sources.py +325 -0
- onetick/py/otq.py +211 -0
- onetick/py/pyomd_mock.py +47 -0
- onetick/py/run.py +841 -0
- onetick/py/servers.py +173 -0
- onetick/py/session.py +1342 -0
- onetick/py/sources/__init__.py +19 -0
- onetick/py/sources/cache.py +167 -0
- onetick/py/sources/common.py +126 -0
- onetick/py/sources/csv.py +642 -0
- onetick/py/sources/custom.py +85 -0
- onetick/py/sources/data_file.py +305 -0
- onetick/py/sources/data_source.py +1049 -0
- onetick/py/sources/empty.py +94 -0
- onetick/py/sources/odbc.py +337 -0
- onetick/py/sources/order_book.py +238 -0
- onetick/py/sources/parquet.py +168 -0
- onetick/py/sources/pit.py +191 -0
- onetick/py/sources/query.py +495 -0
- onetick/py/sources/snapshots.py +419 -0
- onetick/py/sources/split_query_output_by_symbol.py +198 -0
- onetick/py/sources/symbology_mapping.py +123 -0
- onetick/py/sources/symbols.py +357 -0
- onetick/py/sources/ticks.py +825 -0
- onetick/py/sql.py +70 -0
- onetick/py/state.py +256 -0
- onetick/py/types.py +2056 -0
- onetick/py/utils/__init__.py +70 -0
- onetick/py/utils/acl.py +93 -0
- onetick/py/utils/config.py +186 -0
- onetick/py/utils/default.py +49 -0
- onetick/py/utils/file.py +38 -0
- onetick/py/utils/helpers.py +76 -0
- onetick/py/utils/locator.py +94 -0
- onetick/py/utils/perf.py +499 -0
- onetick/py/utils/query.py +49 -0
- onetick/py/utils/render.py +1139 -0
- onetick/py/utils/script.py +244 -0
- onetick/py/utils/temp.py +471 -0
- onetick/py/utils/types.py +118 -0
- onetick/py/utils/tz.py +82 -0
- onetick_py-1.162.2.dist-info/METADATA +148 -0
- onetick_py-1.162.2.dist-info/RECORD +152 -0
- onetick_py-1.162.2.dist-info/WHEEL +5 -0
- onetick_py-1.162.2.dist-info/entry_points.txt +2 -0
- onetick_py-1.162.2.dist-info/licenses/LICENSE +21 -0
- onetick_py-1.162.2.dist-info/top_level.txt +2 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: onetick-py
|
|
3
|
+
Version: 1.162.2
|
|
4
|
+
Summary: Python package that allows you to work with OneTick
|
|
5
|
+
Author-email: solutions <solutions@onetick.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Documentation, https://docs.pip.distribution.sol.onetick.com
|
|
8
|
+
Project-URL: OneTick, https://onetick.com/
|
|
9
|
+
Classifier: Topic :: Database :: Front-Ends
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Environment :: Console
|
|
18
|
+
Requires-Python: >=3.8
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: pandas==1.1.5; python_version == "3.6"
|
|
22
|
+
Requires-Dist: pandas==1.3.4; python_version == "3.7"
|
|
23
|
+
Requires-Dist: pandas<2.1.0,>=1.3.4; python_version == "3.8"
|
|
24
|
+
Requires-Dist: pandas<2.3.0,>=1.3.4; python_version == "3.9"
|
|
25
|
+
Requires-Dist: pandas<2.3.0,>=1.5.1; python_version == "3.10"
|
|
26
|
+
Requires-Dist: pandas<2.3.0,>=1.5.3; python_version == "3.11"
|
|
27
|
+
Requires-Dist: pandas<2.3.0,>=2.2.0; python_version >= "3.12"
|
|
28
|
+
Requires-Dist: pyarrow; python_version >= "3.12"
|
|
29
|
+
Requires-Dist: numpy==1.19.5; python_version <= "3.7"
|
|
30
|
+
Requires-Dist: numpy==1.21.6; python_version == "3.8"
|
|
31
|
+
Requires-Dist: numpy<2.3.0,>=1.20.3; python_version >= "3.9"
|
|
32
|
+
Requires-Dist: coolname
|
|
33
|
+
Requires-Dist: python-dateutil
|
|
34
|
+
Requires-Dist: python-dotenv
|
|
35
|
+
Requires-Dist: tzlocal
|
|
36
|
+
Requires-Dist: tzdata
|
|
37
|
+
Requires-Dist: backports.zoneinfo==0.2.1; python_version < "3.9"
|
|
38
|
+
Requires-Dist: typing_extensions==4.7.1; python_version < "3.8"
|
|
39
|
+
Requires-Dist: singledispatchmethod==1.0; python_version < "3.8"
|
|
40
|
+
Requires-Dist: backports.cached-property==1.0.2; python_version <= "3.8"
|
|
41
|
+
Requires-Dist: backports.functools-lru-cache==1.6.6; python_version <= "3.8"
|
|
42
|
+
Requires-Dist: astunparse==1.6.3; python_version <= "3.8"
|
|
43
|
+
Requires-Dist: graphviz==0.20.1; python_version > "3.6"
|
|
44
|
+
Requires-Dist: packaging>=21.0
|
|
45
|
+
Provides-Extra: strict
|
|
46
|
+
Requires-Dist: numpy==1.19.5; python_version <= "3.7" and extra == "strict"
|
|
47
|
+
Requires-Dist: numpy==1.21.6; python_version == "3.8" and extra == "strict"
|
|
48
|
+
Requires-Dist: numpy==1.23.0; (python_version >= "3.9" and python_version <= "3.10") and extra == "strict"
|
|
49
|
+
Requires-Dist: numpy==1.26.4; (python_version >= "3.11" and python_version <= "3.12") and extra == "strict"
|
|
50
|
+
Requires-Dist: pandas==1.1.5; python_version == "3.6" and extra == "strict"
|
|
51
|
+
Requires-Dist: pandas==1.3.4; (python_version >= "3.7" and python_version <= "3.9") and extra == "strict"
|
|
52
|
+
Requires-Dist: pandas==1.5.1; python_version == "3.10" and extra == "strict"
|
|
53
|
+
Requires-Dist: pandas==1.5.3; python_version == "3.11" and extra == "strict"
|
|
54
|
+
Requires-Dist: pandas==2.2.0; python_version >= "3.12" and extra == "strict"
|
|
55
|
+
Provides-Extra: webapi
|
|
56
|
+
Requires-Dist: onetick.query_webapi; extra == "webapi"
|
|
57
|
+
Provides-Extra: polars
|
|
58
|
+
Requires-Dist: polars==1.12.0; extra == "polars"
|
|
59
|
+
Dynamic: license-file
|
|
60
|
+
Dynamic: provides-extra
|
|
61
|
+
Dynamic: requires-dist
|
|
62
|
+
|
|
63
|
+
# Overview
|
|
64
|
+
|
|
65
|
+
``onetick.py`` is a versatile and efficient Python library designed for handling tick data with ease.
|
|
66
|
+
It harnesses the power of OneTick, the industry-leading tick analytics technology, to process tick
|
|
67
|
+
data at unparalleled speeds. This library is tailored both for existing OneTick users,
|
|
68
|
+
as a Python interface into OneTick, and for new users who seek an intuitive tool for tick data analysis
|
|
69
|
+
that comes with tick data from 200+ exchanges.
|
|
70
|
+
|
|
71
|
+
The primary strength of ``onetick.py`` lies in its similarity to the popular Python library, Pandas.
|
|
72
|
+
Users familiar with Pandas find ``onetick.py`` easy to learn. In particular, ``onetick.py`` users
|
|
73
|
+
can think in terms of Python expressions, built-ins, and native math operations on tick fields.
|
|
74
|
+
|
|
75
|
+
``onetick.py`` goes far beyond the functionality that exists in Pandas exposing all of the power of OneTick
|
|
76
|
+
(decades of development for the capital markets use cases) in a Pandas-like style. Crucially, the
|
|
77
|
+
Pandas-like syntax is translated into the OneTick query language, executing on the high-performance
|
|
78
|
+
OneTick tick server engine. In a nutshell, ``onetick.py`` combines the ease of use of Python
|
|
79
|
+
with the performance of OneTick.
|
|
80
|
+
|
|
81
|
+
## Installation
|
|
82
|
+
|
|
83
|
+
The latest version of ``onetick-py`` is available on PyPI: <https://pypi.org/project/onetick-py/>.
|
|
84
|
+
|
|
85
|
+
pip install onetick-py[webapi]
|
|
86
|
+
|
|
87
|
+
Use ``webapi`` extra to easily use it with remote OneTick Cloud server.
|
|
88
|
+
|
|
89
|
+
See [Getting Started](https://docs.pip.distribution.sol.onetick.com/static/getting_started/root.html)
|
|
90
|
+
section in the documentation to see how quickly set up ``onetick-py`` configuration
|
|
91
|
+
and authentication and start running queries.
|
|
92
|
+
|
|
93
|
+
For other installation options, including using ``onetick-py`` with locally installed OneTick server,
|
|
94
|
+
see [Installation](https://docs.pip.distribution.sol.onetick.com/static/installation/webapi.html)
|
|
95
|
+
section in the documentation.
|
|
96
|
+
|
|
97
|
+
## Key Features
|
|
98
|
+
|
|
99
|
+
- **Pandas-like API**: Familiar syntax and functions for those accustomed to Pandas.
|
|
100
|
+
- **High-Performance**: Executes complex queries rapidly using the underlying OneTick C++ engine.
|
|
101
|
+
- **Real-time processing / CEP**: Same intuitive syntax for real-time and historical analytics.
|
|
102
|
+
- **Convenient Data Inspection and Testing**: Integrated tools for debugging, data inspection, and testing with pytest.
|
|
103
|
+
- **Enterprise-Grade Features**: Includes support for authentication, access control, encryption, and entitlements.
|
|
104
|
+
- **Comprehensive Documentation**: Public multiversion documentation with examples, guides, and use cases.
|
|
105
|
+
|
|
106
|
+
## Applications
|
|
107
|
+
|
|
108
|
+
- **TCA / BestEx**: Quickly implement your own TCA / BestEx analytics.
|
|
109
|
+
- **Quant research**: Ideal for complex, high-performance tick data analysis.
|
|
110
|
+
- **Algorithmic Trading**: Efficient for developing and testing trading algorithms.
|
|
111
|
+
- **Data Visualization**: Compatible with OneTick's visualization tool, OneTick Dashboard.
|
|
112
|
+
- **Machine Learning**: Integrates with the OneTick ML library [onetick-ml](https://dsframework.pip.distribution.sol.onetick.com/intro.html).
|
|
113
|
+
- **Industry Applications**: Industry leading OneTick's Trade Surveillance and BestEx/TCA solutions are written in ``onetick.py``.
|
|
114
|
+
|
|
115
|
+
## Advantages Over Competitors
|
|
116
|
+
|
|
117
|
+
- **Ease of Use**: The only language that provides the performance of a DSL without having to learn a new syntax.
|
|
118
|
+
- **Performance**: Demonstrates superior performance and memory efficiency compared to similar tools.
|
|
119
|
+
- **Parallel Processing**: Natively parallelizable by security and by day.
|
|
120
|
+
- **Production-Ready**: Ideal for debugging, testing, and CI/CD.
|
|
121
|
+
|
|
122
|
+
## Ways to use ``onetick.py``
|
|
123
|
+
|
|
124
|
+
``onetick.py`` can be used to analyze data managed and hosted by OneTick or managed and
|
|
125
|
+
hosted by the customer in a local OneTick installation.
|
|
126
|
+
|
|
127
|
+
### Hosted OneTick
|
|
128
|
+
|
|
129
|
+
- Hosted OneTick comes with high quality tick data, daily data, and reference data for 200+ global markets.
|
|
130
|
+
- OneTick offers T+1 and real-time tick data that is normalized and quality checked.
|
|
131
|
+
- OneTick supports a variety of symbologies and handles corporate action adjustments.
|
|
132
|
+
- The installation is a simple ``pip install`` (details [here](https://docs.pip.distribution.sol.onetick.com/static/installation/webapi.html)).
|
|
133
|
+
|
|
134
|
+
### Local OneTick
|
|
135
|
+
|
|
136
|
+
- Manage all of your market data and order flow in the industry-leading tick management platform OneTick.
|
|
137
|
+
- Have your users access and analyze the data via a simple and intuitive ``onetick.py`` API.
|
|
138
|
+
- Managed services options are available.
|
|
139
|
+
- Installation details are [here](https://docs.pip.distribution.sol.onetick.com/static/installation/onprem.html).
|
|
140
|
+
|
|
141
|
+
## OneTick
|
|
142
|
+
|
|
143
|
+
``onetick-py`` is part of a bigger tick management OneTick ecosystem. You may want to turn to OneTick for
|
|
144
|
+
|
|
145
|
+
- Visual query designer.
|
|
146
|
+
- Collecting, loading, and storing tick data.
|
|
147
|
+
- Other APIs including C++, C#, Java, R, Matlab.
|
|
148
|
+
- Learn more at [onetick.com/onetick-tick-analytics-platform](https://www.onetick.com/onetick-tick-analytics-platform).
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
locator_parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
locator_parser/acl.py,sha256=DO39SykYtVbC0c4WieoFL-q08lIfi1rbM4woHwhSRfE,1347
|
|
3
|
+
locator_parser/actions.py,sha256=ZTI3FffWxUR3BwaJdzPD6JjsslWHWkV_cu-AuQ7ZC_U,7767
|
|
4
|
+
locator_parser/common.py,sha256=O4okBoNLvX5OGWDhIAy-TQFvEcGL_xk1EuyWWr60e5c,10007
|
|
5
|
+
locator_parser/io.py,sha256=VepUvyV-tOYfuA9wL0B6eKrd_s4OBm9sMIJUDxEYeXE,925
|
|
6
|
+
locator_parser/locator.py,sha256=BVakj1-G7GsuL-YdqkwVJhzzhw7N-cq9J6nOwhwRG4s,3170
|
|
7
|
+
onetick/__init__.py,sha256=yeeF6TaLX9B8fwqr8RyOxZQYMIrTOI4oBuGh_rkwf2Q,3543
|
|
8
|
+
onetick/doc_utilities/__init__.py,sha256=4DptlEjzG-Jt16c-gX8pgQnDlSVd7VVPw8vSO4emXsk,132
|
|
9
|
+
onetick/doc_utilities/napoleon.py,sha256=CE2r7xJ2Oz_MHDbMQx5hOE6JxkRPXQE55QE4bq3dYvg,1540
|
|
10
|
+
onetick/doc_utilities/ot_doctest.py,sha256=4bVCBnQpkD4np73sQ3MTmPyxbOfRSm1eF6UrHvb-HD0,4126
|
|
11
|
+
onetick/doc_utilities/snippets.py,sha256=-cNAGLNipRFIKcHC7fkuqiA8OZGyBXlFRTWlnlk0tHE,8949
|
|
12
|
+
onetick/lib/__init__.py,sha256=Rp7CIDoA4E6LIm1f2mNvl_5b_n-0U3suA3FmBXbmKoU,114
|
|
13
|
+
onetick/lib/instance.py,sha256=fifgq2Z915GCGgp6kNCXDrfj71fs--afDGjB4CuL0Cw,4639
|
|
14
|
+
onetick/py/__init__.py,sha256=yLbgxw7Z4kMndYGNKeHIbjHIF9hljYtizCCivo90cp4,11027
|
|
15
|
+
onetick/py/_stack_info.py,sha256=PHZOkW_fK7Fbl4YEj5CaYK9L6vh4j-bUU7_cSYOWZ30,2546
|
|
16
|
+
onetick/py/_version.py,sha256=aIXXaf_RWoB07KeCbDstweSzIUl50PWZeG8I8m5om6A,76
|
|
17
|
+
onetick/py/backports.py,sha256=mR00mxe7E7UgBljf-Wa93Mo6lpi-C4Op561uhPUoEt8,815
|
|
18
|
+
onetick/py/cache.py,sha256=3RjwMA6B-qodMhDe3Fj0lQAU1IE54Vvmeq4gGDiZfz8,12682
|
|
19
|
+
onetick/py/compatibility.py,sha256=KUBRyt_VayU7UnssXe2q_jOQoqCA4-HwIvUSDl9Xn1M,29696
|
|
20
|
+
onetick/py/configuration.py,sha256=Cb_tH3F2vKMF27mFtd5TwXxhUA5Axmxp2TR3OKFfmQ0,27497
|
|
21
|
+
onetick/py/functions.py,sha256=c80ain2S3GRfjW6NTFawN6QonhaJC5Yf8VKTQT4AOgY,96298
|
|
22
|
+
onetick/py/license.py,sha256=tKdiLK41y38Ome0xgj1Xp37mhCmS_uq-wXD5Z5f7xK8,6068
|
|
23
|
+
onetick/py/log.py,sha256=Els2drZcVjJrD6kvbwgFGEpg6jAacoUEtyN6rCaauuk,2723
|
|
24
|
+
onetick/py/math.py,sha256=83w2uoIr-GRC2NsZqvkXXUEgWUDLMA88hdw22f2ibYk,21053
|
|
25
|
+
onetick/py/misc.py,sha256=9t4lHe7fFNVxIFEheOmL7i31WLNgo6Yk-Rbvr__wImo,12663
|
|
26
|
+
onetick/py/otq.py,sha256=yzLGd7lpPPCsBe-Q8COPmF7fvkKx82Xu49vMG-tzIHI,7791
|
|
27
|
+
onetick/py/pyomd_mock.py,sha256=A7IIUraN9yCsPhvnHXQUZrmwFjlh7vofSnYm4G7bdsc,2006
|
|
28
|
+
onetick/py/run.py,sha256=KTEOxltIZLkw_fPfYh7XWbPJeWb-YMnYP96jVn5sxrg,37556
|
|
29
|
+
onetick/py/servers.py,sha256=4hsotQ8HXbH5NHcowIGd8p18Ha0ZN70uwZQC02BxeFs,6870
|
|
30
|
+
onetick/py/session.py,sha256=YrlVNxkVKFN_O6Z2QKOk21IMWVRGnFh5LmPM89nVP9w,49268
|
|
31
|
+
onetick/py/sql.py,sha256=kJ0732bZ0OGF8x3VzcOUs38zEGsxcd1nZOSN75VKXhA,2993
|
|
32
|
+
onetick/py/state.py,sha256=9GC3oMm1CrIjVcAuw77V0GaBZHBcBH6BhZM8QSpTA5w,10085
|
|
33
|
+
onetick/py/types.py,sha256=EDac7J109ON89ZtlGSPyaUEHpbb1vRTS-Mo9DeabrEk,64390
|
|
34
|
+
onetick/py/aggregations/__init__.py,sha256=02WnTc9ocTp34OkGyXRHY2QAZi_QjDMHClE5tvx6Gtk,736
|
|
35
|
+
onetick/py/aggregations/_base.py,sha256=zJL5zYIEmG7XkuWi5kW8m_1JEpohh5kmYbdxGcgvufU,25545
|
|
36
|
+
onetick/py/aggregations/_docs.py,sha256=PlJLSoNKf91dk6PXD0TVV7JNQANgOyS7aNXoTXLMU5Y,33539
|
|
37
|
+
onetick/py/aggregations/compute.py,sha256=GJpR8AWlEmfNsnl-L2oJPuY5rFb6PC-VwLZnnRGtCys,11854
|
|
38
|
+
onetick/py/aggregations/functions.py,sha256=crwjUb4H7-h66aSY50RwSCcR_OE4vF9mF0gVLaXiXiQ,80798
|
|
39
|
+
onetick/py/aggregations/generic.py,sha256=7mWRRAPS-t-e_umQc2T3GPPuW1Pia7mKhgjaVB2sSBM,3896
|
|
40
|
+
onetick/py/aggregations/high_low.py,sha256=B7_Y6KhJjIqJthK0msW0JRkTpxINpnKPuSQjQa2QyZs,2508
|
|
41
|
+
onetick/py/aggregations/num_distinct.py,sha256=s-VrU92kBKnJ6LIAGq2-j-t8amnolIF2EHkEt78A7_s,2830
|
|
42
|
+
onetick/py/aggregations/order_book.py,sha256=6uz4OHHN3_th1o8Yw2jT-72BUrkeGDSjVFtEpBE9rEY,16900
|
|
43
|
+
onetick/py/aggregations/other.py,sha256=DT3T9aTyYmoadVyVjfx0I6jpacjQNQpykbvRPChhw-4,39406
|
|
44
|
+
onetick/py/callback/__init__.py,sha256=lF6u1jDy0dv-2qBvonqmSaQAU7dWQAuq5FWyR5LzvLI,108
|
|
45
|
+
onetick/py/callback/callback.py,sha256=IuTYHijb7gG-IEUtblfmU7zQ6naLrubdMHD-C-RXawg,8565
|
|
46
|
+
onetick/py/callback/callbacks.py,sha256=Brm2uhSlSJfaqjG7nOUCnxKQG7caWHo59iuZFMbVQfg,5001
|
|
47
|
+
onetick/py/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
onetick/py/core/_csv_inspector.py,sha256=tSYjaMEeyvKdY4DJEhxDLj6AIvqcW-IdioLbXKZAFQ8,3169
|
|
49
|
+
onetick/py/core/column.py,sha256=KZToU5LoAAg4xeLEeKtlI3YY_wZ6JnJktSgJIyquhVg,6679
|
|
50
|
+
onetick/py/core/cut_builder.py,sha256=I-SO9ibAWZ48EAjvpInxsH-nPzIvrrnUhrniUSKXdaA,5809
|
|
51
|
+
onetick/py/core/db_constants.py,sha256=OqBbBKLECf8Bw8ylw30jc72xgCJ0gRIC-K-QkkbQ4LI,437
|
|
52
|
+
onetick/py/core/eval_query.py,sha256=FkdRnFM9BiveXzlqzD9WoIEu76GZ0-Ajx0atdEL4OmY,11466
|
|
53
|
+
onetick/py/core/lambda_object.py,sha256=dBFy_W6--IB78JXAXckdbj_zdt-r7Lnj8s0j2Yisk9s,16853
|
|
54
|
+
onetick/py/core/multi_output_source.py,sha256=i9mxtM3yIF30hsVZ-6XttU407VmHklCdPjNDabgB374,7769
|
|
55
|
+
onetick/py/core/per_tick_script.py,sha256=68-ZQ7WZO1YiUhLX1fszMxg6hNAObplYn0_m3ZHZIbw,83207
|
|
56
|
+
onetick/py/core/query_inspector.py,sha256=qrCAFeiZdmBQx0K1IonUoJSUloYghcU1UudFqzQCq4s,16403
|
|
57
|
+
onetick/py/core/source.py,sha256=kwgtX_SLcNY8QSSsuxg2DSoihvnxuDEg-2j5L0y3Gus,61058
|
|
58
|
+
onetick/py/core/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
onetick/py/core/_internal/_manually_bound_value.py,sha256=a4JF63g9MtXsIwpDqm_PCLBH51_SaG1-T6jWV5-IJ1k,191
|
|
60
|
+
onetick/py/core/_internal/_nodes_history.py,sha256=fCpJ4FWFDzM-bmi-YyCHmNYuFM-CL_lE2bXySOi-TPY,7194
|
|
61
|
+
onetick/py/core/_internal/_proxy_node.py,sha256=mO2beRg1pxa27sKmEhUjkvAK7t_TL2l77pl48J5n5bM,3514
|
|
62
|
+
onetick/py/core/_internal/_state_objects.py,sha256=dgEl0Xc0droFzJGuGQH8tbDFBr0gKXq0LKW79S34CsM,90329
|
|
63
|
+
onetick/py/core/_internal/_state_vars.py,sha256=ej_KBqt-QutAtmgjz_ZMS3CFJE617Oud6Z7SNybY7CQ,3242
|
|
64
|
+
onetick/py/core/_internal/_op_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
onetick/py/core/_internal/_op_utils/every_operand.py,sha256=0mQSm92O_qZX15V2zzY_MwzCozJm5MedjK4zvQ2Gomw,265
|
|
66
|
+
onetick/py/core/_internal/_op_utils/is_const.py,sha256=_8XV5gNZJMuwfd49PcJbaaeX57duMjmZSyAQzsznEgY,375
|
|
67
|
+
onetick/py/core/_internal/_per_tick_scripts/tick_list_sort_template.script,sha256=oixAxJSqb8mGt_1e6uSQAuGnoPti9VXRm6wC5YBxheg,4407
|
|
68
|
+
onetick/py/core/_source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
onetick/py/core/_source/_symbol_param.py,sha256=odFDK85lIa_mqQW-yA4ozz9DFPqWA0qWMjY0UDkniDQ,3233
|
|
70
|
+
onetick/py/core/_source/schema.py,sha256=WWaa2HtSNNp1G4Z4Hx85fnUJpTvpBnX7xmDq3Jct9XM,2619
|
|
71
|
+
onetick/py/core/_source/symbol.py,sha256=99VZyRAaGLSl4Qd_juPM_Yqj5yzBDhJADweTn7OQu2s,8042
|
|
72
|
+
onetick/py/core/_source/tmp_otq.py,sha256=24lWBEfArgTUcPIYL_5Grzm368Mk5k2XB4dGuBCYc3E,9026
|
|
73
|
+
onetick/py/core/_source/source_methods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
onetick/py/core/_source/source_methods/aggregations.py,sha256=hyUIi71pkP06p0etduw8n03SYjMiArCzriDJJKGVKxY,27575
|
|
75
|
+
onetick/py/core/_source/source_methods/applyers.py,sha256=6nPnT-3G9Kp31sWY29vTrVKM0Tug6fWMSozuaNbyQ1o,10094
|
|
76
|
+
onetick/py/core/_source/source_methods/columns.py,sha256=JJNr0Wqf8B9igLVoCNtFeNE5sHhBUPWyy-i38YkgqFY,4691
|
|
77
|
+
onetick/py/core/_source/source_methods/data_quality.py,sha256=iz8e-60se-rNH72k5fRxX3cm3ahfbBZ7R7E46Be5zhs,9343
|
|
78
|
+
onetick/py/core/_source/source_methods/debugs.py,sha256=w_e1Rs4XabYO_RAdBjzXPVOrlx8IbLUX99BCzYoZhoE,9931
|
|
79
|
+
onetick/py/core/_source/source_methods/drops.py,sha256=VJTefZG8jxFMezgLA93De-6Z8tfRH5-dxxQ0CpHvPqQ,4420
|
|
80
|
+
onetick/py/core/_source/source_methods/fields.py,sha256=iLB8zV-vuCfp0C34Ayvg-d-8w432fd4nw7VRfmPOCxE,22711
|
|
81
|
+
onetick/py/core/_source/source_methods/filters.py,sha256=nMSM1nb52setFmld1fQ_xcjk9c7fwCOpSBmx1RqawDA,33868
|
|
82
|
+
onetick/py/core/_source/source_methods/joins.py,sha256=d617uDJObeRNoPzfUQKZGmczeHiJQD1v0lvJjsgfKfE,60614
|
|
83
|
+
onetick/py/core/_source/source_methods/merges.py,sha256=efk-R4WOjB2pcAIGWPsZsDzYuitADztH5xtRWTBfutk,23115
|
|
84
|
+
onetick/py/core/_source/source_methods/misc.py,sha256=wSkYRtHJjZn-VlNReLFjmCfiNcfBEKn7s1cqJvWKKdY,54309
|
|
85
|
+
onetick/py/core/_source/source_methods/pandases.py,sha256=BbvIlw6ipqC2dOiKSyyZ5jhAtE4ZtdL30OZXV_e_FuE,3670
|
|
86
|
+
onetick/py/core/_source/source_methods/renames.py,sha256=1n0J9eHyWJnccDAN9MY0rXBN39d-i4IiyphgkSp7DhM,13734
|
|
87
|
+
onetick/py/core/_source/source_methods/sorts.py,sha256=tDFt3rObNHP-S_HOtDd6SLpgkCCGJnSDcMUxLake080,5583
|
|
88
|
+
onetick/py/core/_source/source_methods/switches.py,sha256=kDIuqAFS7P5Nu1vGLcR8jAVN3ItKKpOmh5CJClnQM2o,3825
|
|
89
|
+
onetick/py/core/_source/source_methods/symbols.py,sha256=MG0dgVVVJ6fD_-GJkkXEgTeAsfS79ymJWmuKSL-0QSs,3968
|
|
90
|
+
onetick/py/core/_source/source_methods/times.py,sha256=2kbLHG-3RQM6uWmw8pBGDiAz4R83KK46Tp1smTY6SR8,27665
|
|
91
|
+
onetick/py/core/_source/source_methods/writes.py,sha256=ih1aofFbFbs_2s3WwQzmCc9_7cZvGFJunuAgc5Dkrz0,30241
|
|
92
|
+
onetick/py/core/column_operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
+
onetick/py/core/column_operations/base.py,sha256=FQz079HoCl5mfN97IxFWKtlNchv7mqLY6QdPvHtzekg,33176
|
|
94
|
+
onetick/py/core/column_operations/_methods/__init__.py,sha256=_C5hpQG51MingtWW2N8vYzSVFpR314xIrtukBfEfPMk,207
|
|
95
|
+
onetick/py/core/column_operations/_methods/_internal.py,sha256=znR1FryebClP8cLOl8OvpK8epCu7ID3GCtvBmiOLo4M,877
|
|
96
|
+
onetick/py/core/column_operations/_methods/conversions.py,sha256=QB8ZKJi5qlV8ydPn43nRHa3HMkaXCDV2Fkrq2gnVQ6U,7001
|
|
97
|
+
onetick/py/core/column_operations/_methods/methods.py,sha256=X2bzWreru-3wg5SuqJTzxHpwvmvVPa38lfRQAYCNxCY,11099
|
|
98
|
+
onetick/py/core/column_operations/_methods/op_types.py,sha256=P0LA86Qy5da16Ck1LjT8dG6Jmqu9GOMRlN9h7wMwOVg,4988
|
|
99
|
+
onetick/py/core/column_operations/accessors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
|
+
onetick/py/core/column_operations/accessors/_accessor.py,sha256=GJtqxDNzve6TM8ESJp0gzhSqfKPUYA7_vvLKFO1_rAA,1001
|
|
101
|
+
onetick/py/core/column_operations/accessors/decimal_accessor.py,sha256=7B-h932PhUmUV3flAAvPpKeVR7BbaESwSPyBTkxdxoI,2930
|
|
102
|
+
onetick/py/core/column_operations/accessors/dt_accessor.py,sha256=kAe2Lu3JyufQXeicxgMvKHOJpIwWYqQjuUl7sGncJBc,16765
|
|
103
|
+
onetick/py/core/column_operations/accessors/float_accessor.py,sha256=6di5Pw0nLwKEqnzQImzQ9ORv45xGm-uevFGCg-FZz4w,5541
|
|
104
|
+
onetick/py/core/column_operations/accessors/str_accessor.py,sha256=EBncqEOx421PQvRPd3pTQInWBKN2ttpy1ltXIJI-V-U,55510
|
|
105
|
+
onetick/py/db/__init__.py,sha256=-TKRO0suXTR-mLAppYt-Vegu9HQn7LU_JcObXpS3N9M,61
|
|
106
|
+
onetick/py/db/_inspection.py,sha256=TcgAs41bO-9Ne8i-cjW59kze2qa6ZLQlfWgAH4lzenQ,43882
|
|
107
|
+
onetick/py/db/db.py,sha256=SOy6pFelSVUlT8XHolY_BgR8bAwyQfYn7qRJUFMp73c,58867
|
|
108
|
+
onetick/py/db/utils.py,sha256=gt-KmbGgcp1tH81LH-cLO08n2Hx8GaBPbvfEN22mgLg,2309
|
|
109
|
+
onetick/py/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
onetick/py/docs/docstring_parser.py,sha256=JOLFPy2ldmdmQI1mYRpnXbNzmosmfNqYg16OnYUpBEw,3691
|
|
111
|
+
onetick/py/docs/utils.py,sha256=2ToQQIh28rC0LkcJpRzM_CJG8J6AxISi9uHKk_ttJwY,2369
|
|
112
|
+
onetick/py/oqd/__init__.py,sha256=Bp81sWBZnI5tfJOh4-1Pda7v35K6FBCEB9bodM_PdtM,473
|
|
113
|
+
onetick/py/oqd/eps.py,sha256=flns6Y46E-M3mHeuB1dyM_Ny3Cp1PajZTO1I7nkC0oQ,38743
|
|
114
|
+
onetick/py/oqd/sources.py,sha256=dqQO6cuKEzR2_8tbU8sKa8KLByh28tKSkioJJyjPWnQ,11618
|
|
115
|
+
onetick/py/sources/__init__.py,sha256=6PsJeqWQlNmMO3vBGEpmvOkvNbX1jRHojH3HEbEekzo,799
|
|
116
|
+
onetick/py/sources/cache.py,sha256=X7H6Ugibv2a-wV61oMdNWsXFg1B-xeMZ1kktYRAxGyg,5655
|
|
117
|
+
onetick/py/sources/common.py,sha256=K6ta9xd7hI4Vzxr4M9xQjWF83XOUKh27l2zuXUmIAQU,3872
|
|
118
|
+
onetick/py/sources/csv.py,sha256=GM9SVGgoUZIp4Jouktnp5n_uBgMKjD1yuYRTP36Dpfo,28075
|
|
119
|
+
onetick/py/sources/custom.py,sha256=4ySuNmY9QTrNAWwbCP2kNLVLSofxl4Y8HmHMoHZheyc,2653
|
|
120
|
+
onetick/py/sources/data_file.py,sha256=wvbNN0lKM_yYjOGR7hVbbvevEcpYtWeiB0lfECRl2zc,12242
|
|
121
|
+
onetick/py/sources/data_source.py,sha256=zVw2CnxFuwqSY36dqBf3ozvXE9yb9ooFWVAp8SPweHg,45449
|
|
122
|
+
onetick/py/sources/empty.py,sha256=XqSPk6iZ1iX4LLbV1aXb8I_o_YyezJJnmHgPhrR7dZ4,2830
|
|
123
|
+
onetick/py/sources/odbc.py,sha256=GlimPb9XhnJxwPmPdd0JImr6E5_CV2VVdvYbbGXi4-k,14997
|
|
124
|
+
onetick/py/sources/order_book.py,sha256=GQ8y-F1DuU0430mzPABAmv_u-nOtD-murGnqd1Amk0M,8207
|
|
125
|
+
onetick/py/sources/parquet.py,sha256=ltxqmkx4m8QUxURI-p9SaUgYnQuyDIFpj0bCDJbnGxU,5858
|
|
126
|
+
onetick/py/sources/pit.py,sha256=MdLD_XwtwPAYCRtcawfygvQM082wLO1MsrFR0gN25oo,6936
|
|
127
|
+
onetick/py/sources/query.py,sha256=AOGy_x2bX2BnZGLsC9bsf8cE664UzVvLIrPWMik_-S4,18281
|
|
128
|
+
onetick/py/sources/snapshots.py,sha256=-CAHisUNUFexgFoeKcAVv6gK47TGWxh6bAbsHiHDrvc,17130
|
|
129
|
+
onetick/py/sources/split_query_output_by_symbol.py,sha256=5fKIZfF8FAgLjx_TiHpts8J4JtxoetF-5bEj6nsxbdI,8157
|
|
130
|
+
onetick/py/sources/symbology_mapping.py,sha256=01mwI4w9yxeg2VcxJRaR72MDafjyUBZvMopJC1hhjh0,4809
|
|
131
|
+
onetick/py/sources/symbols.py,sha256=-i1WZMBXjDuvazAy7d5xAMSgpmEpV9cA5yaPl6GYLt0,14859
|
|
132
|
+
onetick/py/sources/ticks.py,sha256=Fnjuko9QnJfl1aEHdrE2z6TTk889kuhXpdzY2dxlWXo,32471
|
|
133
|
+
onetick/py/utils/__init__.py,sha256=c8YnEcQTOoU3LxZtshBbn6O-WNhyTcwkRvO2efML9k8,1329
|
|
134
|
+
onetick/py/utils/acl.py,sha256=da4_rrV3pA7_9OcjvRxtZ0ofzwNxslGVbWqFUJK2rSw,2692
|
|
135
|
+
onetick/py/utils/config.py,sha256=XQw3I-UKemzIGUzaD3q81oHf6nZMltijPVqSe6WxDn8,5558
|
|
136
|
+
onetick/py/utils/default.py,sha256=_yRc7VcGowzjlB8NOORvRJvLGN5IPLrABlH5YO4vi74,1601
|
|
137
|
+
onetick/py/utils/file.py,sha256=M97HnKbBHpw-v2wZZoxsv9RhWu03iNH1kqFHJ6pNZ1w,1070
|
|
138
|
+
onetick/py/utils/helpers.py,sha256=XY2PaMUSzFNIpiuiAY_gPQ0TnYTmfoPAGNAFh_6aB14,2747
|
|
139
|
+
onetick/py/utils/locator.py,sha256=YUOXU0yh0ZZZOJpJniAq9WNn0_u3X_M5q2tEwt1cp_4,2887
|
|
140
|
+
onetick/py/utils/perf.py,sha256=ffcTK2jngVDtI5-wKMMLxY-lK03acoGdzB5J5Yc2UVU,19333
|
|
141
|
+
onetick/py/utils/query.py,sha256=b60JmfJDx3mpP74rTQC3qnlCb6t4fYFEauVaH9ulwL8,1330
|
|
142
|
+
onetick/py/utils/render.py,sha256=bWHJc1IYpTXhjTv62zaFLKNFAS9SXNSQNbrqrQoQjbE,37599
|
|
143
|
+
onetick/py/utils/script.py,sha256=Y8NujEo2_5QaP6KDnLKJiKQ7SmMjw8_dv8sYL9rHDCE,11184
|
|
144
|
+
onetick/py/utils/temp.py,sha256=wp07CiygTZSkifgnE5DGyIm4u8vMHQy7A2NTxKo8k2A,17386
|
|
145
|
+
onetick/py/utils/types.py,sha256=_tYf66r9JVgjtiCJfxIxrg_BQEjHkjlnck_i86dBYEY,3606
|
|
146
|
+
onetick/py/utils/tz.py,sha256=QXclESLGU8YXysUT9DXkcBqLWWO47Bb_tanFUzYpPZI,2800
|
|
147
|
+
onetick_py-1.162.2.dist-info/licenses/LICENSE,sha256=Yhu7lKNFS0fsaN-jSattEMRtCOPueP58Eu5BPH8ZGjM,1075
|
|
148
|
+
onetick_py-1.162.2.dist-info/METADATA,sha256=t52ua8EBWNPKHNiBwnkRJQX3iiRH-kq72xQVu4fo41I,7959
|
|
149
|
+
onetick_py-1.162.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
150
|
+
onetick_py-1.162.2.dist-info/entry_points.txt,sha256=QmK_tFswIN-SQRmtnTSBEi8GvT0TVq-66IzXXZIsV3U,81
|
|
151
|
+
onetick_py-1.162.2.dist-info/top_level.txt,sha256=Na1jSJmVMyYGOndaswt554QKIUwQjcYh6th2ATsmw0U,23
|
|
152
|
+
onetick_py-1.162.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 OneMarketData, LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|