pulse-data 0.2.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.
- inventzia/pulse/data/__init__.py +19 -0
- inventzia/pulse/data/datum/__init__.py +29 -0
- inventzia/pulse/data/datum/codec.py +94 -0
- inventzia/pulse/data/datum/datum.py +50 -0
- inventzia/pulse/data/datum/provider.py +67 -0
- inventzia/pulse/data/datum/registry.py +269 -0
- inventzia/pulse/data/schemas/common/vector_value.py +56 -0
- inventzia/pulse/data/schemas/marketdata/cdf_bar.py +70 -0
- inventzia/pulse/data/schemas/platform/heart_beat.py +43 -0
- inventzia/pulse/data/schemas/platform/text_message.py +45 -0
- inventzia/pulse/data/schemas/provider.py +45 -0
- inventzia/pulse/data/schemas/registry.py +51 -0
- pulse_data-0.2.2.dist-info/METADATA +259 -0
- pulse_data-0.2.2.dist-info/RECORD +19 -0
- pulse_data-0.2.2.dist-info/WHEEL +5 -0
- pulse_data-0.2.2.dist-info/licenses/LICENSE-AGPL-3.0 +668 -0
- pulse_data-0.2.2.dist-info/licenses/LICENSE-COMMERCIAL.txt +22 -0
- pulse_data-0.2.2.dist-info/licenses/NOTICE +16 -0
- pulse_data-0.2.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Commercial License Agreement
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2013-2026 Magrino Bini, Paola Apruzzese, Inventzia Science and Technology Ltd.
|
|
4
|
+
|
|
5
|
+
This software is available under a dual licensing model:
|
|
6
|
+
|
|
7
|
+
1. Open Source License:
|
|
8
|
+
This software is available under the GNU Affero General Public License v3.0.
|
|
9
|
+
See the LICENSE-AGPL-3.0 file for details.
|
|
10
|
+
|
|
11
|
+
2. Commercial License:
|
|
12
|
+
For organizations that wish to use this software without the obligations
|
|
13
|
+
imposed by the AGPL (including the requirement to open source derivative
|
|
14
|
+
works), a commercial license is available.
|
|
15
|
+
|
|
16
|
+
Under the commercial license, you are granted the rights to:
|
|
17
|
+
- Use this software in proprietary/commercial applications.
|
|
18
|
+
- Modify and distribute this software without the copyleft requirements of AGPL.
|
|
19
|
+
- Receive optional support and warranty (if offered).
|
|
20
|
+
|
|
21
|
+
To obtain a commercial license, please contact:
|
|
22
|
+
operations@inventzia.com
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
pulse-data
|
|
2
|
+
Copyright (c) 2013-2026 Magrino Bini, Paola Apruzzese, Inventzia Science and Technology Ltd.
|
|
3
|
+
|
|
4
|
+
This product is dual-licensed under the GNU Affero General Public License v3.0
|
|
5
|
+
(see LICENSE-AGPL-3.0) and a commercial license from Inventzia Science and
|
|
6
|
+
Technology Ltd. (see LICENSE-COMMERCIAL.txt).
|
|
7
|
+
|
|
8
|
+
-------------------------------------------------------------------------------
|
|
9
|
+
Third-party components
|
|
10
|
+
-------------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
This product may include software developed by third parties. Each such
|
|
13
|
+
component remains under its own license. The list below must be updated as
|
|
14
|
+
dependencies are added or removed.
|
|
15
|
+
|
|
16
|
+
(none recorded yet)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
inventzia
|