neuronum 1.0.2__py3-none-any.whl → 1.1.0__py3-none-any.whl

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,7 @@
1
+ neuronum/__init__.py,sha256=P0KTJMGY_eT3l5YzR4LHfl64KH5Qt_qhcrqf9Ld2G00,74
2
+ neuronum/neuronum.py,sha256=gDzg9aN4jjaBnKLLD9YRSvmV1uffKZOBJb8Fv-WDtfM,6186
3
+ neuronum-1.1.0.dist-info/LICENSE,sha256=UiZjNHiCyRP6WoZfbYQh9cv4JW96wIofKXmzBJrYSUk,1125
4
+ neuronum-1.1.0.dist-info/METADATA,sha256=ANT3QFYz3GHkz_lLS75O8CEVrc8bDOM2i8tjfgtnAio,2398
5
+ neuronum-1.1.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6
+ neuronum-1.1.0.dist-info/top_level.txt,sha256=73zXVVO9UTTiwEcSaXytsJ8n0q47OCwAqPlIh-hzWJU,9
7
+ neuronum-1.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.1.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,36 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: neuronum
3
- Version: 1.0.2
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.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
@@ -1,7 +0,0 @@
1
- neuronum/__init__.py,sha256=P0KTJMGY_eT3l5YzR4LHfl64KH5Qt_qhcrqf9Ld2G00,74
2
- neuronum/neuronum.py,sha256=gDzg9aN4jjaBnKLLD9YRSvmV1uffKZOBJb8Fv-WDtfM,6186
3
- neuronum-1.0.2.dist-info/LICENSE,sha256=UiZjNHiCyRP6WoZfbYQh9cv4JW96wIofKXmzBJrYSUk,1125
4
- neuronum-1.0.2.dist-info/METADATA,sha256=yUgu1QJM5YyiNlbxiXnjD2JMyRNupIMFZBoExl75fNI,1134
5
- neuronum-1.0.2.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
6
- neuronum-1.0.2.dist-info/top_level.txt,sha256=73zXVVO9UTTiwEcSaXytsJ8n0q47OCwAqPlIh-hzWJU,9
7
- neuronum-1.0.2.dist-info/RECORD,,