neuronum 1.0.3__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.

@@ -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
+ ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
16
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
17
+ [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
18
+ [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
19
+ [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](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
+ ```
@@ -0,0 +1,85 @@
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
+ ```
@@ -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
+ ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
16
+ Interact with the `Neuronum Network` to build, connect & automate economic data streams.
17
+ [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
18
+ [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://neuronum.net/docs)
19
+ [![Tutorials](https://img.shields.io/badge/Tutorials-Watch%20now-red)](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.3',
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.3/PKG-INFO DELETED
@@ -1,36 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: neuronum
3
- Version: 1.0.3
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
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
24
-
25
- Interact with the `Neuronum` Network to build, connect & automate economic data streams.
26
-
27
- ## Links and Resources
28
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
29
- [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](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.3/README.md DELETED
@@ -1,14 +0,0 @@
1
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
2
-
3
- Interact with the `Neuronum` Network to build, connect & automate economic data streams.
4
-
5
- ## Links and Resources
6
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
7
- [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](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.3
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
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
24
-
25
- Interact with the `Neuronum` Network to build, connect & automate economic data streams.
26
-
27
- ## Links and Resources
28
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net)
29
- [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](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