neuronum 1.3.1__tar.gz → 1.3.3__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.3.1 → neuronum-1.3.3}/PKG-INFO +5 -9
- {neuronum-1.3.1 → neuronum-1.3.3}/README.md +4 -8
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum/neuronum.py +2 -2
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum.egg-info/PKG-INFO +5 -9
- {neuronum-1.3.1 → neuronum-1.3.3}/setup.py +1 -1
- {neuronum-1.3.1 → neuronum-1.3.3}/LICENSE +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum/__init__.py +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum.egg-info/SOURCES.txt +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum.egg-info/dependency_links.txt +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum.egg-info/requires.txt +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/neuronum.egg-info/top_level.txt +0 -0
- {neuronum-1.3.1 → neuronum-1.3.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
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
|
|
@@ -18,22 +18,18 @@ Requires-Dist: websocket-client
|
|
|
18
18
|

|
|
19
19
|
|
|
20
20
|
[](https://neuronum.net)
|
|
21
|
-
[](https://
|
|
21
|
+
[](https://github.com/neuronumcybernetics/neuronum)
|
|
22
22
|
[](https://www.youtube.com/@neuronumnet)
|
|
23
23
|
|
|
24
24
|
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## Cell Features
|
|
27
27
|
- **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
|
|
28
28
|
- **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
|
|
29
|
-
- **Streams (STX)**:
|
|
30
|
-
|
|
31
|
-
## Community Cell Features
|
|
32
|
-
- **Circuits (CTX)**: A simple Key-Value-Label database (testing / side projects)
|
|
33
|
-
- **Streams (STX)**: Stream data to synchronize devices and databases in real time
|
|
29
|
+
- **Streams (STX)**: stream, synchronize and control data in real time
|
|
34
30
|
|
|
35
31
|
## Getting Started
|
|
36
|
-
Create your Neuronum
|
|
32
|
+
Create your Neuronum Cell: [Create Cell](https://neuronum.net/createcell)
|
|
37
33
|
|
|
38
34
|
Install the Neuronum library using pip:
|
|
39
35
|
```bash
|
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
3
|
[](https://neuronum.net)
|
|
4
|
-
[](https://
|
|
4
|
+
[](https://github.com/neuronumcybernetics/neuronum)
|
|
5
5
|
[](https://www.youtube.com/@neuronumnet)
|
|
6
6
|
|
|
7
7
|
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Cell Features
|
|
10
10
|
- **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
|
|
11
11
|
- **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
|
|
12
|
-
- **Streams (STX)**:
|
|
13
|
-
|
|
14
|
-
## Community Cell Features
|
|
15
|
-
- **Circuits (CTX)**: A simple Key-Value-Label database (testing / side projects)
|
|
16
|
-
- **Streams (STX)**: Stream data to synchronize devices and databases in real time
|
|
12
|
+
- **Streams (STX)**: stream, synchronize and control data in real time
|
|
17
13
|
|
|
18
14
|
## Getting Started
|
|
19
|
-
Create your Neuronum
|
|
15
|
+
Create your Neuronum Cell: [Create Cell](https://neuronum.net/createcell)
|
|
20
16
|
|
|
21
17
|
Install the Neuronum library using pip:
|
|
22
18
|
```bash
|
|
@@ -220,7 +220,7 @@ class Cell:
|
|
|
220
220
|
while True:
|
|
221
221
|
try:
|
|
222
222
|
ws = create_connection(f"wss://{self.network}/sync/{stx}")
|
|
223
|
-
ws.settimeout(
|
|
223
|
+
ws.settimeout(10)
|
|
224
224
|
ws.send(json.dumps(auth))
|
|
225
225
|
print("Connected to WebSocket.")
|
|
226
226
|
|
|
@@ -230,7 +230,7 @@ class Cell:
|
|
|
230
230
|
operation = json.loads(raw_operation)
|
|
231
231
|
yield operation
|
|
232
232
|
except socket.timeout:
|
|
233
|
-
print("
|
|
233
|
+
print("Waiting for stream...")
|
|
234
234
|
except KeyboardInterrupt:
|
|
235
235
|
print("Closing connection...")
|
|
236
236
|
ws.close()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
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
|
|
@@ -18,22 +18,18 @@ Requires-Dist: websocket-client
|
|
|
18
18
|

|
|
19
19
|
|
|
20
20
|
[](https://neuronum.net)
|
|
21
|
-
[](https://
|
|
21
|
+
[](https://github.com/neuronumcybernetics/neuronum)
|
|
22
22
|
[](https://www.youtube.com/@neuronumnet)
|
|
23
23
|
|
|
24
24
|
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## Cell Features
|
|
27
27
|
- **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
|
|
28
28
|
- **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
|
|
29
|
-
- **Streams (STX)**:
|
|
30
|
-
|
|
31
|
-
## Community Cell Features
|
|
32
|
-
- **Circuits (CTX)**: A simple Key-Value-Label database (testing / side projects)
|
|
33
|
-
- **Streams (STX)**: Stream data to synchronize devices and databases in real time
|
|
29
|
+
- **Streams (STX)**: stream, synchronize and control data in real time
|
|
34
30
|
|
|
35
31
|
## Getting Started
|
|
36
|
-
Create your Neuronum
|
|
32
|
+
Create your Neuronum Cell: [Create Cell](https://neuronum.net/createcell)
|
|
37
33
|
|
|
38
34
|
Install the Neuronum library using pip:
|
|
39
35
|
```bash
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='neuronum',
|
|
5
|
-
version='1.3.
|
|
5
|
+
version='1.3.3',
|
|
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
|