neuronum 1.0.2__tar.gz → 1.1.0__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.1.0/PKG-INFO +99 -0
- neuronum-1.1.0/README.md +85 -0
- neuronum-1.1.0/neuronum.egg-info/PKG-INFO +99 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/setup.py +1 -4
- neuronum-1.0.2/PKG-INFO +0 -36
- neuronum-1.0.2/README.md +0 -14
- neuronum-1.0.2/neuronum.egg-info/PKG-INFO +0 -36
- {neuronum-1.0.2 → neuronum-1.1.0}/LICENSE +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum/__init__.py +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum/neuronum.py +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum.egg-info/SOURCES.txt +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum.egg-info/dependency_links.txt +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum.egg-info/requires.txt +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/neuronum.egg-info/top_level.txt +0 -0
- {neuronum-1.0.2 → neuronum-1.1.0}/setup.cfg +0 -0
neuronum-1.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neuronum
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
|
+
Author: Neuronum Cybernetics
|
|
6
|
+
Author-email: welcome@neuronum.net
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
17
|
+
[](https://neuronum.net)
|
|
18
|
+
[](https://neuronum.net/docs)
|
|
19
|
+
[](https://www.youtube.com/@neuronumnet)
|
|
20
|
+
|
|
21
|
+
Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
`Transmitters (TX)`: Automate economic data transfer + Circuits Integration
|
|
25
|
+
`Circuits (CTX)`: A simple Key-Value-Label database to store economic data
|
|
26
|
+
`Streams (STX)`: Stream economic data to synchronize devices & databases in real time (beta)
|
|
27
|
+
|
|
28
|
+
Install the Neuronum library using pip:
|
|
29
|
+
```bash
|
|
30
|
+
pip install neuronum
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Set & test Cell connection:
|
|
34
|
+
```bash
|
|
35
|
+
import neuronum
|
|
36
|
+
|
|
37
|
+
cell = neuronum.Cell(
|
|
38
|
+
host="test::cell",
|
|
39
|
+
password="test1234",
|
|
40
|
+
network="neuronum.net",
|
|
41
|
+
synapse="testtesttesttesttesttesttesttest"
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
cell.test_connection()
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Activate Transmitter (TX):
|
|
48
|
+
```bash
|
|
49
|
+
TX = "test_transmitter"
|
|
50
|
+
|
|
51
|
+
data = {
|
|
52
|
+
"key1": "value1",
|
|
53
|
+
"key2": "value2",
|
|
54
|
+
"key3": "value3",
|
|
55
|
+
"key4": "value4"
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
cell.activate(TX, data)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Store data on Circuit (CTX):
|
|
62
|
+
```bash
|
|
63
|
+
CTX = "test::ctx"
|
|
64
|
+
|
|
65
|
+
label = "your_label"
|
|
66
|
+
data = {
|
|
67
|
+
"key1": "value1",
|
|
68
|
+
"key2": "value2",
|
|
69
|
+
"key3": "value3",
|
|
70
|
+
}
|
|
71
|
+
cell.store(label, data, CTX)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Load data from Circuit (CTX):
|
|
75
|
+
```bash
|
|
76
|
+
CTX = "test::ctx"
|
|
77
|
+
|
|
78
|
+
label = "your_label"
|
|
79
|
+
|
|
80
|
+
data = cell.load(label, CTX)
|
|
81
|
+
key1 = data["key1"]
|
|
82
|
+
key2 = data["key2"]
|
|
83
|
+
key3 = data["key3"]
|
|
84
|
+
print(key1, key2, key3)
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Delete data from Circuit (CTX):
|
|
88
|
+
```bash
|
|
89
|
+
CTX = "test::ctx"
|
|
90
|
+
|
|
91
|
+
label = "your_label"
|
|
92
|
+
data = cell.delete(label, CTX)
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Stream data:
|
|
96
|
+
```bash
|
|
97
|
+
data = "your_data"
|
|
98
|
+
cell.stream(data)
|
|
99
|
+
```
|
neuronum-1.1.0/README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+

|
|
2
|
+
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
3
|
+
[](https://neuronum.net)
|
|
4
|
+
[](https://neuronum.net/docs)
|
|
5
|
+
[](https://www.youtube.com/@neuronumnet)
|
|
6
|
+
|
|
7
|
+
Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
`Transmitters (TX)`: Automate economic data transfer + Circuits Integration
|
|
11
|
+
`Circuits (CTX)`: A simple Key-Value-Label database to store economic data
|
|
12
|
+
`Streams (STX)`: Stream economic data to synchronize devices & databases in real time (beta)
|
|
13
|
+
|
|
14
|
+
Install the Neuronum library using pip:
|
|
15
|
+
```bash
|
|
16
|
+
pip install neuronum
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Set & test Cell connection:
|
|
20
|
+
```bash
|
|
21
|
+
import neuronum
|
|
22
|
+
|
|
23
|
+
cell = neuronum.Cell(
|
|
24
|
+
host="test::cell",
|
|
25
|
+
password="test1234",
|
|
26
|
+
network="neuronum.net",
|
|
27
|
+
synapse="testtesttesttesttesttesttesttest"
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
cell.test_connection()
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Activate Transmitter (TX):
|
|
34
|
+
```bash
|
|
35
|
+
TX = "test_transmitter"
|
|
36
|
+
|
|
37
|
+
data = {
|
|
38
|
+
"key1": "value1",
|
|
39
|
+
"key2": "value2",
|
|
40
|
+
"key3": "value3",
|
|
41
|
+
"key4": "value4"
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
cell.activate(TX, data)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Store data on Circuit (CTX):
|
|
48
|
+
```bash
|
|
49
|
+
CTX = "test::ctx"
|
|
50
|
+
|
|
51
|
+
label = "your_label"
|
|
52
|
+
data = {
|
|
53
|
+
"key1": "value1",
|
|
54
|
+
"key2": "value2",
|
|
55
|
+
"key3": "value3",
|
|
56
|
+
}
|
|
57
|
+
cell.store(label, data, CTX)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Load data from Circuit (CTX):
|
|
61
|
+
```bash
|
|
62
|
+
CTX = "test::ctx"
|
|
63
|
+
|
|
64
|
+
label = "your_label"
|
|
65
|
+
|
|
66
|
+
data = cell.load(label, CTX)
|
|
67
|
+
key1 = data["key1"]
|
|
68
|
+
key2 = data["key2"]
|
|
69
|
+
key3 = data["key3"]
|
|
70
|
+
print(key1, key2, key3)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Delete data from Circuit (CTX):
|
|
74
|
+
```bash
|
|
75
|
+
CTX = "test::ctx"
|
|
76
|
+
|
|
77
|
+
label = "your_label"
|
|
78
|
+
data = cell.delete(label, CTX)
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Stream data:
|
|
82
|
+
```bash
|
|
83
|
+
data = "your_data"
|
|
84
|
+
cell.stream(data)
|
|
85
|
+
```
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neuronum
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
|
+
Author: Neuronum Cybernetics
|
|
6
|
+
Author-email: welcome@neuronum.net
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
Interact with the `Neuronum Network` to build, connect & automate economic data streams.
|
|
17
|
+
[](https://neuronum.net)
|
|
18
|
+
[](https://neuronum.net/docs)
|
|
19
|
+
[](https://www.youtube.com/@neuronumnet)
|
|
20
|
+
|
|
21
|
+
Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
`Transmitters (TX)`: Automate economic data transfer + Circuits Integration
|
|
25
|
+
`Circuits (CTX)`: A simple Key-Value-Label database to store economic data
|
|
26
|
+
`Streams (STX)`: Stream economic data to synchronize devices & databases in real time (beta)
|
|
27
|
+
|
|
28
|
+
Install the Neuronum library using pip:
|
|
29
|
+
```bash
|
|
30
|
+
pip install neuronum
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Set & test Cell connection:
|
|
34
|
+
```bash
|
|
35
|
+
import neuronum
|
|
36
|
+
|
|
37
|
+
cell = neuronum.Cell(
|
|
38
|
+
host="test::cell",
|
|
39
|
+
password="test1234",
|
|
40
|
+
network="neuronum.net",
|
|
41
|
+
synapse="testtesttesttesttesttesttesttest"
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
cell.test_connection()
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Activate Transmitter (TX):
|
|
48
|
+
```bash
|
|
49
|
+
TX = "test_transmitter"
|
|
50
|
+
|
|
51
|
+
data = {
|
|
52
|
+
"key1": "value1",
|
|
53
|
+
"key2": "value2",
|
|
54
|
+
"key3": "value3",
|
|
55
|
+
"key4": "value4"
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
cell.activate(TX, data)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Store data on Circuit (CTX):
|
|
62
|
+
```bash
|
|
63
|
+
CTX = "test::ctx"
|
|
64
|
+
|
|
65
|
+
label = "your_label"
|
|
66
|
+
data = {
|
|
67
|
+
"key1": "value1",
|
|
68
|
+
"key2": "value2",
|
|
69
|
+
"key3": "value3",
|
|
70
|
+
}
|
|
71
|
+
cell.store(label, data, CTX)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Load data from Circuit (CTX):
|
|
75
|
+
```bash
|
|
76
|
+
CTX = "test::ctx"
|
|
77
|
+
|
|
78
|
+
label = "your_label"
|
|
79
|
+
|
|
80
|
+
data = cell.load(label, CTX)
|
|
81
|
+
key1 = data["key1"]
|
|
82
|
+
key2 = data["key2"]
|
|
83
|
+
key3 = data["key3"]
|
|
84
|
+
print(key1, key2, key3)
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Delete data from Circuit (CTX):
|
|
88
|
+
```bash
|
|
89
|
+
CTX = "test::ctx"
|
|
90
|
+
|
|
91
|
+
label = "your_label"
|
|
92
|
+
data = cell.delete(label, CTX)
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Stream data:
|
|
96
|
+
```bash
|
|
97
|
+
data = "your_data"
|
|
98
|
+
cell.stream(data)
|
|
99
|
+
```
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
|
-
from pathlib import Path
|
|
3
|
-
|
|
4
|
-
|
|
5
2
|
|
|
6
3
|
setup(
|
|
7
4
|
name='neuronum',
|
|
8
|
-
version='1.0
|
|
5
|
+
version='1.1.0',
|
|
9
6
|
author='Neuronum Cybernetics',
|
|
10
7
|
author_email='welcome@neuronum.net',
|
|
11
8
|
description='Interact with the Neuronum Network to build, connect & automate economic data streams',
|
neuronum-1.0.2/PKG-INFO
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: neuronum
|
|
3
|
-
Version: 1.0.2
|
|
4
|
-
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
|
-
Author: Neuronum Cybernetics
|
|
6
|
-
Author-email: welcome@neuronum.net
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
-
Classifier: Operating System :: OS Independent
|
|
10
|
-
Requires-Python: >=3.6
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Requires-Dist: requests
|
|
14
|
-
Dynamic: author
|
|
15
|
-
Dynamic: author-email
|
|
16
|
-
Dynamic: classifier
|
|
17
|
-
Dynamic: description
|
|
18
|
-
Dynamic: description-content-type
|
|
19
|
-
Dynamic: requires-dist
|
|
20
|
-
Dynamic: requires-python
|
|
21
|
-
Dynamic: summary
|
|
22
|
-
|
|
23
|
-

|
|
24
|
-
|
|
25
|
-
Interact with the `Neuronum` Network to build, connect & automate economic data streams.
|
|
26
|
-
|
|
27
|
-
## Links and Resources
|
|
28
|
-
[](https://neuronum.net)
|
|
29
|
-
[](https://neuronum.net/docs)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
## Installation
|
|
33
|
-
Install the Neuronum library using pip:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
pip install neuronum
|
neuronum-1.0.2/README.md
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
Interact with the `Neuronum` Network to build, connect & automate economic data streams.
|
|
4
|
-
|
|
5
|
-
## Links and Resources
|
|
6
|
-
[](https://neuronum.net)
|
|
7
|
-
[](https://neuronum.net/docs)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
## Installation
|
|
11
|
-
Install the Neuronum library using pip:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
pip install neuronum
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: neuronum
|
|
3
|
-
Version: 1.0.2
|
|
4
|
-
Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
|
|
5
|
-
Author: Neuronum Cybernetics
|
|
6
|
-
Author-email: welcome@neuronum.net
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
-
Classifier: Operating System :: OS Independent
|
|
10
|
-
Requires-Python: >=3.6
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Requires-Dist: requests
|
|
14
|
-
Dynamic: author
|
|
15
|
-
Dynamic: author-email
|
|
16
|
-
Dynamic: classifier
|
|
17
|
-
Dynamic: description
|
|
18
|
-
Dynamic: description-content-type
|
|
19
|
-
Dynamic: requires-dist
|
|
20
|
-
Dynamic: requires-python
|
|
21
|
-
Dynamic: summary
|
|
22
|
-
|
|
23
|
-

|
|
24
|
-
|
|
25
|
-
Interact with the `Neuronum` Network to build, connect & automate economic data streams.
|
|
26
|
-
|
|
27
|
-
## Links and Resources
|
|
28
|
-
[](https://neuronum.net)
|
|
29
|
-
[](https://neuronum.net/docs)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
## Installation
|
|
33
|
-
Install the Neuronum library using pip:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
pip install neuronum
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|