neuronum 1.0.3__tar.gz → 1.1.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.

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