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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neuronum
3
- Version: 1.2.4
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
- data = operation.get("data")
142
- key = operation.get("data").get("key1")
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("cellHost")
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
- data = operation.get("data")
125
- key = operation.get("data").get("key1")
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("cellHost")
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.4
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
- data = operation.get("data")
142
- key = operation.get("data").get("key1")
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("cellHost")
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.4',
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