neuronum 1.1.1__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.1
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,16 +13,24 @@ 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
- ## Features
20
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
21
+
22
+ ## Business Cell Features
22
23
  - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
23
24
  - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
24
25
  - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
25
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)
32
+
33
+
26
34
  Install the Neuronum library using pip:
27
35
  ```bash
28
36
  pip install neuronum
@@ -33,10 +41,10 @@ Set & test Cell connection:
33
41
  import neuronum
34
42
 
35
43
  cell = neuronum.Cell(
36
- host="test::cell",
37
- password="test1234",
44
+ host="host::cell",
45
+ password="your_password",
38
46
  network="neuronum.net",
39
- synapse="testtesttesttesttesttesttesttest"
47
+ synapse="your_synapse"
40
48
  )
41
49
 
42
50
  cell.test_connection()
@@ -44,7 +52,7 @@ cell.test_connection()
44
52
 
45
53
  Activate Transmitter (TX):
46
54
  ```bash
47
- TX = "test_transmitter"
55
+ TX = "id::tx"
48
56
 
49
57
  data = {
50
58
  "key1": "value1",
@@ -56,9 +64,20 @@ data = {
56
64
  cell.activate(TX, data)
57
65
  ```
58
66
 
59
- 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):
60
79
  ```bash
61
- CTX = "test::ctx"
80
+ CTX = "id::ctx"
62
81
 
63
82
  label = "your_label"
64
83
  data = {
@@ -69,9 +88,20 @@ data = {
69
88
  cell.store(label, data, CTX)
70
89
  ```
71
90
 
72
- Load data from Circuit (CTX):
91
+ Load data from your private Circuit (CTX):
92
+ ```bash
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):
73
103
  ```bash
74
- CTX = "test::ctx"
104
+ CTX = "id::ctx"
75
105
 
76
106
  label = "your_label"
77
107
 
@@ -82,9 +112,15 @@ key3 = data["key3"]
82
112
  print(key1, key2, key3)
83
113
  ```
84
114
 
85
- 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):
86
122
  ```bash
87
- CTX = "test::ctx"
123
+ CTX = "id::ctx"
88
124
 
89
125
  label = "your_label"
90
126
  data = cell.delete(label, CTX)
@@ -1,14 +1,22 @@
1
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
2
  [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
4
3
  [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
5
4
  [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](https://www.youtube.com/@neuronumnet)
6
5
 
7
- ## Features
6
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
7
+
8
+ ## Business Cell Features
8
9
  - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
9
10
  - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
10
11
  - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
11
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
+
12
20
  Install the Neuronum library using pip:
13
21
  ```bash
14
22
  pip install neuronum
@@ -19,10 +27,10 @@ Set & test Cell connection:
19
27
  import neuronum
20
28
 
21
29
  cell = neuronum.Cell(
22
- host="test::cell",
23
- password="test1234",
30
+ host="host::cell",
31
+ password="your_password",
24
32
  network="neuronum.net",
25
- synapse="testtesttesttesttesttesttesttest"
33
+ synapse="your_synapse"
26
34
  )
27
35
 
28
36
  cell.test_connection()
@@ -30,7 +38,7 @@ cell.test_connection()
30
38
 
31
39
  Activate Transmitter (TX):
32
40
  ```bash
33
- TX = "test_transmitter"
41
+ TX = "id::tx"
34
42
 
35
43
  data = {
36
44
  "key1": "value1",
@@ -42,9 +50,20 @@ data = {
42
50
  cell.activate(TX, data)
43
51
  ```
44
52
 
45
- Store data on Circuit (CTX):
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):
46
65
  ```bash
47
- CTX = "test::ctx"
66
+ CTX = "id::ctx"
48
67
 
49
68
  label = "your_label"
50
69
  data = {
@@ -55,9 +74,20 @@ data = {
55
74
  cell.store(label, data, CTX)
56
75
  ```
57
76
 
58
- Load data from Circuit (CTX):
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):
59
89
  ```bash
60
- CTX = "test::ctx"
90
+ CTX = "id::ctx"
61
91
 
62
92
  label = "your_label"
63
93
 
@@ -68,9 +98,15 @@ key3 = data["key3"]
68
98
  print(key1, key2, key3)
69
99
  ```
70
100
 
71
- Delete data from Circuit (CTX):
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):
72
108
  ```bash
73
- CTX = "test::ctx"
109
+ CTX = "id::ctx"
74
110
 
75
111
  label = "your_label"
76
112
  data = cell.delete(label, CTX)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neuronum
3
- Version: 1.1.1
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,16 +13,24 @@ 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
- ## Features
20
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
21
+
22
+ ## Business Cell Features
22
23
  - **Transmitters (TX)**: Automate economic data transfer + Circuits Integration
23
24
  - **Circuits (CTX)**: A simple Key-Value-Label database to store economic data
24
25
  - **Streams (STX)**: Stream economic data to synchronize devices & databases in real time (beta)
25
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)
32
+
33
+
26
34
  Install the Neuronum library using pip:
27
35
  ```bash
28
36
  pip install neuronum
@@ -33,10 +41,10 @@ Set & test Cell connection:
33
41
  import neuronum
34
42
 
35
43
  cell = neuronum.Cell(
36
- host="test::cell",
37
- password="test1234",
44
+ host="host::cell",
45
+ password="your_password",
38
46
  network="neuronum.net",
39
- synapse="testtesttesttesttesttesttesttest"
47
+ synapse="your_synapse"
40
48
  )
41
49
 
42
50
  cell.test_connection()
@@ -44,7 +52,7 @@ cell.test_connection()
44
52
 
45
53
  Activate Transmitter (TX):
46
54
  ```bash
47
- TX = "test_transmitter"
55
+ TX = "id::tx"
48
56
 
49
57
  data = {
50
58
  "key1": "value1",
@@ -56,9 +64,20 @@ data = {
56
64
  cell.activate(TX, data)
57
65
  ```
58
66
 
59
- 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):
60
79
  ```bash
61
- CTX = "test::ctx"
80
+ CTX = "id::ctx"
62
81
 
63
82
  label = "your_label"
64
83
  data = {
@@ -69,9 +88,20 @@ data = {
69
88
  cell.store(label, data, CTX)
70
89
  ```
71
90
 
72
- Load data from Circuit (CTX):
91
+ Load data from your private Circuit (CTX):
92
+ ```bash
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):
73
103
  ```bash
74
- CTX = "test::ctx"
104
+ CTX = "id::ctx"
75
105
 
76
106
  label = "your_label"
77
107
 
@@ -82,9 +112,15 @@ key3 = data["key3"]
82
112
  print(key1, key2, key3)
83
113
  ```
84
114
 
85
- 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):
86
122
  ```bash
87
- CTX = "test::ctx"
123
+ CTX = "id::ctx"
88
124
 
89
125
  label = "your_label"
90
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.1',
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',
File without changes
File without changes
File without changes
File without changes