neuronum 4.0.0__tar.gz → 4.0.1__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-4.0.0/neuronum.egg-info → neuronum-4.0.1}/PKG-INFO +8 -70
- neuronum-4.0.1/README.md +64 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/cli/main.py +2 -4
- {neuronum-4.0.0 → neuronum-4.0.1/neuronum.egg-info}/PKG-INFO +8 -70
- {neuronum-4.0.0 → neuronum-4.0.1}/setup.py +1 -1
- neuronum-4.0.0/README.md +0 -126
- {neuronum-4.0.0 → neuronum-4.0.1}/LICENSE +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/cli/__init__.py +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum/__init__.py +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum/neuronum.py +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum.egg-info/SOURCES.txt +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum.egg-info/dependency_links.txt +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum.egg-info/entry_points.txt +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum.egg-info/requires.txt +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/neuronum.egg-info/top_level.txt +0 -0
- {neuronum-4.0.0 → neuronum-4.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.1
|
|
4
4
|
Summary: Official client library to interact with the Neuronum Network
|
|
5
5
|
Home-page: https://neuronum.net
|
|
6
6
|
Author: Neuronum Cybernetics
|
|
@@ -42,14 +42,13 @@ Dynamic: summary
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
### **About Neuronum**
|
|
45
|
-
Neuronum is a
|
|
46
|
-
In practice, Neuronum forms an interconnected network of soft- and hardware components (Nodes) exchanging data in real time.
|
|
45
|
+
Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
|
|
47
46
|
|
|
48
47
|
|
|
49
|
-
### **
|
|
48
|
+
### **Neuronum Attributes**
|
|
50
49
|
**Cell & Nodes**
|
|
51
|
-
- Cell: Account to connect and interact with
|
|
52
|
-
- Nodes:
|
|
50
|
+
- Cell: Account to connect and interact with Neuronum
|
|
51
|
+
- Nodes: Soft- and Hardware components hosting data gateways
|
|
53
52
|
|
|
54
53
|
**Data Gateways**
|
|
55
54
|
- Transmitters (TX): Automate data transfer in standardized formats
|
|
@@ -76,83 +75,22 @@ Create Cell:
|
|
|
76
75
|
neuronum create-cell # create Cell / Cell type / Cell network
|
|
77
76
|
```
|
|
78
77
|
|
|
79
|
-
Connect Cell:
|
|
80
|
-
```sh
|
|
81
|
-
neuronum connect-cell # connect Cell
|
|
82
|
-
```
|
|
83
78
|
|
|
84
79
|
View connected Cell:
|
|
85
80
|
```sh
|
|
86
|
-
neuronum view-cell # view Cell / output = Connected Cell: '
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Disconnect Cell:
|
|
90
|
-
```sh
|
|
91
|
-
neuronum disconnect-cell # disconnect Cell
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
Delete Cell:
|
|
95
|
-
```sh
|
|
96
|
-
neuronum delete-cell # delete Cell
|
|
81
|
+
neuronum view-cell # view Cell / output = Connected Cell: 'cell_id'"
|
|
97
82
|
```
|
|
98
83
|
|
|
99
84
|
|
|
100
85
|
------------------
|
|
101
86
|
|
|
102
87
|
|
|
103
|
-
|
|
104
88
|
### **Build on Neuronum**
|
|
105
89
|
Initialize Node (default template):
|
|
106
90
|
```sh
|
|
107
91
|
neuronum init-node # initialize a Node with default template
|
|
108
92
|
```
|
|
109
93
|
|
|
110
|
-
Initialize Node (stream template):
|
|
111
|
-
```sh
|
|
112
|
-
neuronum init-node --stream id::stx # initialize a Node with stream template
|
|
113
|
-
```
|
|
114
94
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
neuronum init-node --sync id::stx # initialize a Node with sync template
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
cd to Node folder:
|
|
121
|
-
```sh
|
|
122
|
-
cd node_node_id # change to Node folder
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
Start Node:
|
|
126
|
-
```sh
|
|
127
|
-
neuronum start-node # start Node
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
Start Node (detached mode):
|
|
131
|
-
```sh
|
|
132
|
-
neuronum start-node --d # start Node in "detached" mode
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
Stop Node:
|
|
136
|
-
```sh
|
|
137
|
-
neuronum stop-node # stop Node
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
Connect Node:
|
|
141
|
-
```sh
|
|
142
|
-
neuronum connect-node # connect your Node / Node type / Node description
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
Update Node:
|
|
146
|
-
```sh
|
|
147
|
-
neuronum update-node # update your Node
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
Disconnect Node:
|
|
151
|
-
```sh
|
|
152
|
-
neuronum disconnect-node # disconnect your Node
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
Delete Node:
|
|
156
|
-
```sh
|
|
157
|
-
neuronum delete-node # delete your Node
|
|
158
|
-
```
|
|
95
|
+
**Node Examples:**
|
|
96
|
+
Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
|
neuronum-4.0.1/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
[](https://neuronum.net) [](https://github.com/neuronumcybernetics/neuronum)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### **Getting Started Goals**
|
|
7
|
+
- Learn about Neuronum
|
|
8
|
+
- Connect to Neuronum
|
|
9
|
+
- Build on Neuronum
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### **About Neuronum**
|
|
13
|
+
Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### **Neuronum Attributes**
|
|
17
|
+
**Cell & Nodes**
|
|
18
|
+
- Cell: Account to connect and interact with Neuronum
|
|
19
|
+
- Nodes: Soft- and Hardware components hosting data gateways
|
|
20
|
+
|
|
21
|
+
**Data Gateways**
|
|
22
|
+
- Transmitters (TX): Automate data transfer in standardized formats
|
|
23
|
+
- Circuits (CTX): Store data in cloud-based key-value-label databases
|
|
24
|
+
- Streams (STX): Stream, synchronize, and control data in real time
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
#### Requirements
|
|
28
|
+
- Python >= 3.8 -> https://www.python.org/downloads/
|
|
29
|
+
- neuronum >= 4.0.0 -> https://pypi.org/project/neuronum/
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
------------------
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### **Connect to Neuronum**
|
|
36
|
+
Installation
|
|
37
|
+
```sh
|
|
38
|
+
pip install neuronum # install neuronum dependencies
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Create Cell:
|
|
42
|
+
```sh
|
|
43
|
+
neuronum create-cell # create Cell / Cell type / Cell network
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
View connected Cell:
|
|
48
|
+
```sh
|
|
49
|
+
neuronum view-cell # view Cell / output = Connected Cell: 'cell_id'"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
------------------
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### **Build on Neuronum**
|
|
57
|
+
Initialize Node (default template):
|
|
58
|
+
```sh
|
|
59
|
+
neuronum init-node # initialize a Node with default template
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
**Node Examples:**
|
|
64
|
+
Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
|
|
@@ -440,8 +440,7 @@ cell = neuronum.Cell(
|
|
|
440
440
|
)
|
|
441
441
|
|
|
442
442
|
async def main():
|
|
443
|
-
|
|
444
|
-
async for operation in cell.sync(STX):
|
|
443
|
+
async for operation in cell.sync():
|
|
445
444
|
message = operation.get("data").get("message")
|
|
446
445
|
print(message)
|
|
447
446
|
|
|
@@ -469,14 +468,13 @@ cell = neuronum.Cell(
|
|
|
469
468
|
)
|
|
470
469
|
|
|
471
470
|
async def main():
|
|
472
|
-
STX = "{stx}"
|
|
473
471
|
label = "Welcome to Neuronum"
|
|
474
472
|
|
|
475
473
|
while True:
|
|
476
474
|
data = {{
|
|
477
475
|
"message": "Hello, Neuronum!"
|
|
478
476
|
}}
|
|
479
|
-
await cell.stream(label, data
|
|
477
|
+
await cell.stream(label, data)
|
|
480
478
|
|
|
481
479
|
asyncio.run(main())
|
|
482
480
|
""")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.1
|
|
4
4
|
Summary: Official client library to interact with the Neuronum Network
|
|
5
5
|
Home-page: https://neuronum.net
|
|
6
6
|
Author: Neuronum Cybernetics
|
|
@@ -42,14 +42,13 @@ Dynamic: summary
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
### **About Neuronum**
|
|
45
|
-
Neuronum is a
|
|
46
|
-
In practice, Neuronum forms an interconnected network of soft- and hardware components (Nodes) exchanging data in real time.
|
|
45
|
+
Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
|
|
47
46
|
|
|
48
47
|
|
|
49
|
-
### **
|
|
48
|
+
### **Neuronum Attributes**
|
|
50
49
|
**Cell & Nodes**
|
|
51
|
-
- Cell: Account to connect and interact with
|
|
52
|
-
- Nodes:
|
|
50
|
+
- Cell: Account to connect and interact with Neuronum
|
|
51
|
+
- Nodes: Soft- and Hardware components hosting data gateways
|
|
53
52
|
|
|
54
53
|
**Data Gateways**
|
|
55
54
|
- Transmitters (TX): Automate data transfer in standardized formats
|
|
@@ -76,83 +75,22 @@ Create Cell:
|
|
|
76
75
|
neuronum create-cell # create Cell / Cell type / Cell network
|
|
77
76
|
```
|
|
78
77
|
|
|
79
|
-
Connect Cell:
|
|
80
|
-
```sh
|
|
81
|
-
neuronum connect-cell # connect Cell
|
|
82
|
-
```
|
|
83
78
|
|
|
84
79
|
View connected Cell:
|
|
85
80
|
```sh
|
|
86
|
-
neuronum view-cell # view Cell / output = Connected Cell: '
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Disconnect Cell:
|
|
90
|
-
```sh
|
|
91
|
-
neuronum disconnect-cell # disconnect Cell
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
Delete Cell:
|
|
95
|
-
```sh
|
|
96
|
-
neuronum delete-cell # delete Cell
|
|
81
|
+
neuronum view-cell # view Cell / output = Connected Cell: 'cell_id'"
|
|
97
82
|
```
|
|
98
83
|
|
|
99
84
|
|
|
100
85
|
------------------
|
|
101
86
|
|
|
102
87
|
|
|
103
|
-
|
|
104
88
|
### **Build on Neuronum**
|
|
105
89
|
Initialize Node (default template):
|
|
106
90
|
```sh
|
|
107
91
|
neuronum init-node # initialize a Node with default template
|
|
108
92
|
```
|
|
109
93
|
|
|
110
|
-
Initialize Node (stream template):
|
|
111
|
-
```sh
|
|
112
|
-
neuronum init-node --stream id::stx # initialize a Node with stream template
|
|
113
|
-
```
|
|
114
94
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
neuronum init-node --sync id::stx # initialize a Node with sync template
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
cd to Node folder:
|
|
121
|
-
```sh
|
|
122
|
-
cd node_node_id # change to Node folder
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
Start Node:
|
|
126
|
-
```sh
|
|
127
|
-
neuronum start-node # start Node
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
Start Node (detached mode):
|
|
131
|
-
```sh
|
|
132
|
-
neuronum start-node --d # start Node in "detached" mode
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
Stop Node:
|
|
136
|
-
```sh
|
|
137
|
-
neuronum stop-node # stop Node
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
Connect Node:
|
|
141
|
-
```sh
|
|
142
|
-
neuronum connect-node # connect your Node / Node type / Node description
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
Update Node:
|
|
146
|
-
```sh
|
|
147
|
-
neuronum update-node # update your Node
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
Disconnect Node:
|
|
151
|
-
```sh
|
|
152
|
-
neuronum disconnect-node # disconnect your Node
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
Delete Node:
|
|
156
|
-
```sh
|
|
157
|
-
neuronum delete-node # delete your Node
|
|
158
|
-
```
|
|
95
|
+
**Node Examples:**
|
|
96
|
+
Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
|
neuronum-4.0.0/README.md
DELETED
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
[](https://neuronum.net) [](https://github.com/neuronumcybernetics/neuronum)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### **Getting Started Goals**
|
|
7
|
-
- Learn about Neuronum
|
|
8
|
-
- Connect to Neuronum
|
|
9
|
-
- Build on Neuronum
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
### **About Neuronum**
|
|
13
|
-
Neuronum is a central serverless data gateway automating the processing and distribution of data transmission, storage, and streaming.
|
|
14
|
-
In practice, Neuronum forms an interconnected network of soft- and hardware components (Nodes) exchanging data in real time.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### **Network Attributes**
|
|
18
|
-
**Cell & Nodes**
|
|
19
|
-
- Cell: Account to connect and interact with the Neuronum Network
|
|
20
|
-
- Nodes: Software and Hardware components connected to Neuronum
|
|
21
|
-
|
|
22
|
-
**Data Gateways**
|
|
23
|
-
- Transmitters (TX): Automate data transfer in standardized formats
|
|
24
|
-
- Circuits (CTX): Store data in cloud-based key-value-label databases
|
|
25
|
-
- Streams (STX): Stream, synchronize, and control data in real time
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
#### Requirements
|
|
29
|
-
- Python >= 3.8 -> https://www.python.org/downloads/
|
|
30
|
-
- neuronum >= 4.0.0 -> https://pypi.org/project/neuronum/
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
------------------
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### **Connect to Neuronum**
|
|
37
|
-
Installation
|
|
38
|
-
```sh
|
|
39
|
-
pip install neuronum # install neuronum dependencies
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
Create Cell:
|
|
43
|
-
```sh
|
|
44
|
-
neuronum create-cell # create Cell / Cell type / Cell network
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Connect Cell:
|
|
48
|
-
```sh
|
|
49
|
-
neuronum connect-cell # connect Cell
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
View connected Cell:
|
|
53
|
-
```sh
|
|
54
|
-
neuronum view-cell # view Cell / output = Connected Cell: 'your_cell'"
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Disconnect Cell:
|
|
58
|
-
```sh
|
|
59
|
-
neuronum disconnect-cell # disconnect Cell
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
Delete Cell:
|
|
63
|
-
```sh
|
|
64
|
-
neuronum delete-cell # delete Cell
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
------------------
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
### **Build on Neuronum**
|
|
73
|
-
Initialize Node (default template):
|
|
74
|
-
```sh
|
|
75
|
-
neuronum init-node # initialize a Node with default template
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
Initialize Node (stream template):
|
|
79
|
-
```sh
|
|
80
|
-
neuronum init-node --stream id::stx # initialize a Node with stream template
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
Initialize Node (sync template):
|
|
84
|
-
```sh
|
|
85
|
-
neuronum init-node --sync id::stx # initialize a Node with sync template
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
cd to Node folder:
|
|
89
|
-
```sh
|
|
90
|
-
cd node_node_id # change to Node folder
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
Start Node:
|
|
94
|
-
```sh
|
|
95
|
-
neuronum start-node # start Node
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
Start Node (detached mode):
|
|
99
|
-
```sh
|
|
100
|
-
neuronum start-node --d # start Node in "detached" mode
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
Stop Node:
|
|
104
|
-
```sh
|
|
105
|
-
neuronum stop-node # stop Node
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
Connect Node:
|
|
109
|
-
```sh
|
|
110
|
-
neuronum connect-node # connect your Node / Node type / Node description
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
Update Node:
|
|
114
|
-
```sh
|
|
115
|
-
neuronum update-node # update your Node
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
Disconnect Node:
|
|
119
|
-
```sh
|
|
120
|
-
neuronum disconnect-node # disconnect your Node
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
Delete Node:
|
|
124
|
-
```sh
|
|
125
|
-
neuronum delete-node # delete your Node
|
|
126
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|