neuronum 1.2.4__tar.gz → 1.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.
Potentially problematic release.
This version of neuronum might be problematic. Click here for more details.
- {neuronum-1.2.4 → neuronum-1.2.5}/PKG-INFO +4 -5
- {neuronum-1.2.4 → neuronum-1.2.5}/README.md +3 -4
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum.egg-info/PKG-INFO +4 -5
- {neuronum-1.2.4 → neuronum-1.2.5}/setup.py +1 -1
- {neuronum-1.2.4 → neuronum-1.2.5}/LICENSE +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum/__init__.py +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum/neuronum.py +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum.egg-info/SOURCES.txt +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum.egg-info/dependency_links.txt +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum.egg-info/requires.txt +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/neuronum.egg-info/top_level.txt +0 -0
- {neuronum-1.2.4 → neuronum-1.2.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.5
|
|
4
4
|
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
5
|
Home-page: https://neuronum.net
|
|
6
6
|
Author: Neuronum Cybernetics
|
|
@@ -138,10 +138,9 @@ Sync stream:
|
|
|
138
138
|
stream = cell.sync()
|
|
139
139
|
for operation in stream:
|
|
140
140
|
label = operation.get("label")
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
time = operation.get("time")
|
|
141
|
+
value = operation.get("data").get("key1")
|
|
142
|
+
ts = operation.get("time")
|
|
144
143
|
stxID = operation.get("stxID")
|
|
145
|
-
operator = operation.get("
|
|
144
|
+
operator = operation.get("operator")
|
|
146
145
|
```
|
|
147
146
|
|
|
@@ -121,10 +121,9 @@ Sync stream:
|
|
|
121
121
|
stream = cell.sync()
|
|
122
122
|
for operation in stream:
|
|
123
123
|
label = operation.get("label")
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
time = operation.get("time")
|
|
124
|
+
value = operation.get("data").get("key1")
|
|
125
|
+
ts = operation.get("time")
|
|
127
126
|
stxID = operation.get("stxID")
|
|
128
|
-
operator = operation.get("
|
|
127
|
+
operator = operation.get("operator")
|
|
129
128
|
```
|
|
130
129
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.5
|
|
4
4
|
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
5
|
Home-page: https://neuronum.net
|
|
6
6
|
Author: Neuronum Cybernetics
|
|
@@ -138,10 +138,9 @@ Sync stream:
|
|
|
138
138
|
stream = cell.sync()
|
|
139
139
|
for operation in stream:
|
|
140
140
|
label = operation.get("label")
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
time = operation.get("time")
|
|
141
|
+
value = operation.get("data").get("key1")
|
|
142
|
+
ts = operation.get("time")
|
|
144
143
|
stxID = operation.get("stxID")
|
|
145
|
-
operator = operation.get("
|
|
144
|
+
operator = operation.get("operator")
|
|
146
145
|
```
|
|
147
146
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='neuronum',
|
|
5
|
-
version='1.2.
|
|
5
|
+
version='1.2.5',
|
|
6
6
|
author='Neuronum Cybernetics',
|
|
7
7
|
author_email='welcome@neuronum.net',
|
|
8
8
|
description='Interact with the Neuronum Network to build, connect & automate economic data streams',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|