neuronum 1.1.0__tar.gz → 1.1.2__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.1.0
3
+ Version: 1.1.2
4
4
  Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
5
5
  Author: Neuronum Cybernetics
6
6
  Author-email: welcome@neuronum.net
@@ -13,17 +13,23 @@ License-File: LICENSE
13
13
  Requires-Dist: requests
14
14
 
15
15
  ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
16
- Interact with the `Neuronum Network` to build, connect & automate economic data streams.
17
16
  [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
18
17
  [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
19
18
  [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](https://www.youtube.com/@neuronumnet)
20
19
 
21
- Interact with the Neuronum Network to build, connect & automate economic data streams
20
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
21
+
22
+ ## Business Cell Features
23
+ - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
24
+ - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
25
+ - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
26
+
27
+ ## Community Cell Features
28
+ - **Circuits (CTX)**: A simple Key-Value-Label database (perfect for testing and side projects)
29
+
30
+ ## Getting Started
31
+ Create your Neuronum Business/Community Cell: [Create Cell](https://neuronum.net/createcell)
22
32
 
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
33
 
28
34
  Install the Neuronum library using pip:
29
35
  ```bash
@@ -35,10 +41,10 @@ Set & test Cell connection:
35
41
  import neuronum
36
42
 
37
43
  cell = neuronum.Cell(
38
- host="test::cell",
39
- password="test1234",
44
+ host="host::cell",
45
+ password="your_password",
40
46
  network="neuronum.net",
41
- synapse="testtesttesttesttesttesttesttest"
47
+ synapse="your_synapse"
42
48
  )
43
49
 
44
50
  cell.test_connection()
@@ -46,7 +52,7 @@ cell.test_connection()
46
52
 
47
53
  Activate Transmitter (TX):
48
54
  ```bash
49
- TX = "test_transmitter"
55
+ TX = "id::tx"
50
56
 
51
57
  data = {
52
58
  "key1": "value1",
@@ -58,9 +64,20 @@ data = {
58
64
  cell.activate(TX, data)
59
65
  ```
60
66
 
61
- Store data on Circuit (CTX):
67
+ Store data on your private Circuit (CTX):
68
+ ```bash
69
+ label = "your_label"
70
+ data = {
71
+ "key1": "value1",
72
+ "key2": "value2",
73
+ "key3": "value3",
74
+ }
75
+ cell.store(label, data)
76
+ ```
77
+
78
+ Store data on a public Circuit (CTX):
62
79
  ```bash
63
- CTX = "test::ctx"
80
+ CTX = "id::ctx"
64
81
 
65
82
  label = "your_label"
66
83
  data = {
@@ -71,9 +88,20 @@ data = {
71
88
  cell.store(label, data, CTX)
72
89
  ```
73
90
 
74
- Load data from Circuit (CTX):
91
+ Load data from your private Circuit (CTX):
75
92
  ```bash
76
- CTX = "test::ctx"
93
+ label = "your_label"
94
+
95
+ data = cell.load(label)
96
+ key1 = data["key1"]
97
+ key2 = data["key2"]
98
+ key3 = data["key3"]
99
+ print(key1, key2, key3)
100
+ ```
101
+
102
+ Load data from a public Circuit (CTX):
103
+ ```bash
104
+ CTX = "id::ctx"
77
105
 
78
106
  label = "your_label"
79
107
 
@@ -84,9 +112,15 @@ key3 = data["key3"]
84
112
  print(key1, key2, key3)
85
113
  ```
86
114
 
87
- Delete data from Circuit (CTX):
115
+ Delete data from your private Circuit (CTX):
116
+ ```bash
117
+ label = "your_label"
118
+ data = cell.delete(label)
119
+ ```
120
+
121
+ Delete data from a public Circuit (CTX):
88
122
  ```bash
89
- CTX = "test::ctx"
123
+ CTX = "id::ctx"
90
124
 
91
125
  label = "your_label"
92
126
  data = cell.delete(label, CTX)
@@ -0,0 +1,119 @@
1
+ ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
2
+ [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
3
+ [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
4
+ [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](https://www.youtube.com/@neuronumnet)
5
+
6
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
7
+
8
+ ## Business Cell Features
9
+ - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
10
+ - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
11
+ - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
12
+
13
+ ## Community Cell Features
14
+ - **Circuits (CTX)**: A simple Key-Value-Label database (perfect for testing and side projects)
15
+
16
+ ## Getting Started
17
+ Create your Neuronum Business/Community Cell: [Create Cell](https://neuronum.net/createcell)
18
+
19
+
20
+ Install the Neuronum library using pip:
21
+ ```bash
22
+ pip install neuronum
23
+ ```
24
+
25
+ Set & test Cell connection:
26
+ ```bash
27
+ import neuronum
28
+
29
+ cell = neuronum.Cell(
30
+ host="host::cell",
31
+ password="your_password",
32
+ network="neuronum.net",
33
+ synapse="your_synapse"
34
+ )
35
+
36
+ cell.test_connection()
37
+ ```
38
+
39
+ Activate Transmitter (TX):
40
+ ```bash
41
+ TX = "id::tx"
42
+
43
+ data = {
44
+ "key1": "value1",
45
+ "key2": "value2",
46
+ "key3": "value3",
47
+ "key4": "value4"
48
+ }
49
+
50
+ cell.activate(TX, data)
51
+ ```
52
+
53
+ Store data on your private Circuit (CTX):
54
+ ```bash
55
+ label = "your_label"
56
+ data = {
57
+ "key1": "value1",
58
+ "key2": "value2",
59
+ "key3": "value3",
60
+ }
61
+ cell.store(label, data)
62
+ ```
63
+
64
+ Store data on a public Circuit (CTX):
65
+ ```bash
66
+ CTX = "id::ctx"
67
+
68
+ label = "your_label"
69
+ data = {
70
+ "key1": "value1",
71
+ "key2": "value2",
72
+ "key3": "value3",
73
+ }
74
+ cell.store(label, data, CTX)
75
+ ```
76
+
77
+ Load data from your private Circuit (CTX):
78
+ ```bash
79
+ label = "your_label"
80
+
81
+ data = cell.load(label)
82
+ key1 = data["key1"]
83
+ key2 = data["key2"]
84
+ key3 = data["key3"]
85
+ print(key1, key2, key3)
86
+ ```
87
+
88
+ Load data from a public Circuit (CTX):
89
+ ```bash
90
+ CTX = "id::ctx"
91
+
92
+ label = "your_label"
93
+
94
+ data = cell.load(label, CTX)
95
+ key1 = data["key1"]
96
+ key2 = data["key2"]
97
+ key3 = data["key3"]
98
+ print(key1, key2, key3)
99
+ ```
100
+
101
+ Delete data from your private Circuit (CTX):
102
+ ```bash
103
+ label = "your_label"
104
+ data = cell.delete(label)
105
+ ```
106
+
107
+ Delete data from a public Circuit (CTX):
108
+ ```bash
109
+ CTX = "id::ctx"
110
+
111
+ label = "your_label"
112
+ data = cell.delete(label, CTX)
113
+ ```
114
+
115
+ Stream data:
116
+ ```bash
117
+ data = "your_data"
118
+ cell.stream(data)
119
+ ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neuronum
3
- Version: 1.1.0
3
+ Version: 1.1.2
4
4
  Summary: Interact with the Neuronum Network to build, connect & automate economic data streams
5
5
  Author: Neuronum Cybernetics
6
6
  Author-email: welcome@neuronum.net
@@ -13,17 +13,23 @@ License-File: LICENSE
13
13
  Requires-Dist: requests
14
14
 
15
15
  ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
16
- Interact with the `Neuronum Network` to build, connect & automate economic data streams.
17
16
  [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
18
17
  [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
19
18
  [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](https://www.youtube.com/@neuronumnet)
20
19
 
21
- Interact with the Neuronum Network to build, connect & automate economic data streams
20
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
21
+
22
+ ## Business Cell Features
23
+ - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
24
+ - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
25
+ - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
26
+
27
+ ## Community Cell Features
28
+ - **Circuits (CTX)**: A simple Key-Value-Label database (perfect for testing and side projects)
29
+
30
+ ## Getting Started
31
+ Create your Neuronum Business/Community Cell: [Create Cell](https://neuronum.net/createcell)
22
32
 
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
33
 
28
34
  Install the Neuronum library using pip:
29
35
  ```bash
@@ -35,10 +41,10 @@ Set & test Cell connection:
35
41
  import neuronum
36
42
 
37
43
  cell = neuronum.Cell(
38
- host="test::cell",
39
- password="test1234",
44
+ host="host::cell",
45
+ password="your_password",
40
46
  network="neuronum.net",
41
- synapse="testtesttesttesttesttesttesttest"
47
+ synapse="your_synapse"
42
48
  )
43
49
 
44
50
  cell.test_connection()
@@ -46,7 +52,7 @@ cell.test_connection()
46
52
 
47
53
  Activate Transmitter (TX):
48
54
  ```bash
49
- TX = "test_transmitter"
55
+ TX = "id::tx"
50
56
 
51
57
  data = {
52
58
  "key1": "value1",
@@ -58,9 +64,20 @@ data = {
58
64
  cell.activate(TX, data)
59
65
  ```
60
66
 
61
- Store data on Circuit (CTX):
67
+ Store data on your private Circuit (CTX):
68
+ ```bash
69
+ label = "your_label"
70
+ data = {
71
+ "key1": "value1",
72
+ "key2": "value2",
73
+ "key3": "value3",
74
+ }
75
+ cell.store(label, data)
76
+ ```
77
+
78
+ Store data on a public Circuit (CTX):
62
79
  ```bash
63
- CTX = "test::ctx"
80
+ CTX = "id::ctx"
64
81
 
65
82
  label = "your_label"
66
83
  data = {
@@ -71,9 +88,20 @@ data = {
71
88
  cell.store(label, data, CTX)
72
89
  ```
73
90
 
74
- Load data from Circuit (CTX):
91
+ Load data from your private Circuit (CTX):
75
92
  ```bash
76
- CTX = "test::ctx"
93
+ label = "your_label"
94
+
95
+ data = cell.load(label)
96
+ key1 = data["key1"]
97
+ key2 = data["key2"]
98
+ key3 = data["key3"]
99
+ print(key1, key2, key3)
100
+ ```
101
+
102
+ Load data from a public Circuit (CTX):
103
+ ```bash
104
+ CTX = "id::ctx"
77
105
 
78
106
  label = "your_label"
79
107
 
@@ -84,9 +112,15 @@ key3 = data["key3"]
84
112
  print(key1, key2, key3)
85
113
  ```
86
114
 
87
- Delete data from Circuit (CTX):
115
+ Delete data from your private Circuit (CTX):
116
+ ```bash
117
+ label = "your_label"
118
+ data = cell.delete(label)
119
+ ```
120
+
121
+ Delete data from a public Circuit (CTX):
88
122
  ```bash
89
- CTX = "test::ctx"
123
+ CTX = "id::ctx"
90
124
 
91
125
  label = "your_label"
92
126
  data = cell.delete(label, CTX)
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='neuronum',
5
- version='1.1.0',
5
+ version='1.1.2',
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',
neuronum-1.1.0/README.md DELETED
@@ -1,85 +0,0 @@
1
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
2
- Interact with the `Neuronum Network` to build, connect & automate economic data streams.
3
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
4
- [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
5
- [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](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
- ```
File without changes
File without changes
File without changes
File without changes