neuronum 5.4.0__tar.gz → 5.4.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 5.4.0
3
+ Version: 5.4.1
4
4
  Summary: Official client library to interact with the Neuronum Network
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -31,10 +31,23 @@ Dynamic: requires-dist
31
31
  Dynamic: requires-python
32
32
  Dynamic: summary
33
33
 
34
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
34
+ <h1 align="center">
35
+ <img src="https://neuronum.net/static/neuronum.svg" alt="Neuronum" width="100">
36
+ </h1>
37
+ <h4 align="center">Build, connect, and automate serverless data infrastructures with Neuronum</h4>
35
38
 
36
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net) [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://github.com/neuronumcybernetics/neuronum)
39
+ <p align="center">
40
+ <a href="https://neuronum.net">
41
+ <img src="https://img.shields.io/badge/Website-Neuronum-blue" alt="Website">
42
+ </a>
43
+ <a href="https://github.com/neuronumcybernetics/neuronum">
44
+ <img src="https://img.shields.io/badge/Docs-Read%20now-green" alt="Documentation">
45
+ </a>
46
+ <img src="https://img.shields.io/badge/Version-5.4.0-blueviolet" alt="Lib Version">
47
+ <img src="https://img.shields.io/badge/Python-3.9%2B-yellow" alt="Python Version">
48
+ </p>
37
49
 
50
+ ---
38
51
 
39
52
  ## **Getting Started Goals**
40
53
  - Learn about Neuronum
@@ -58,11 +71,11 @@ Neuronum is a framework to build serverless connected app & data gateways automa
58
71
  - Streams (STX): Stream, synchronize, and control data in real time
59
72
 
60
73
  **Cellai**
61
- Cellai is a CLI-based assistant that helps you interact with Neuronum
74
+ - Cellai is a CLI-based assistant that helps you interact with Neuronum
62
75
 
63
76
 
64
77
  #### Requirements
65
- - Python >= 3.8 -> https://www.python.org/downloads/
78
+ - Python >= 3.9 -> https://www.python.org/downloads/
66
79
  - neuronum >= 5.4.0 -> https://pypi.org/project/neuronum/
67
80
 
68
81
 
@@ -114,7 +127,18 @@ Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
114
127
 
115
128
 
116
129
  ### **Interact with Neuronum**
130
+ Web-based:
117
131
  1. Visit: https://neuronum.net
118
132
  2. Connect your Cell
119
133
  3. Explore Transmitters
120
134
  4. Activate Transmitters
135
+
136
+ Code-based:
137
+ ```python
138
+ TX = txID # select the Transmitter TX
139
+ data = {
140
+ "say": "hello",
141
+ }
142
+ tx_response = await cell.activate_tx(TX, data) # activate TX - > get response back
143
+ print(tx_response)
144
+ ```
@@ -1,7 +1,20 @@
1
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
2
-
3
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net) [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://github.com/neuronumcybernetics/neuronum)
4
-
1
+ <h1 align="center">
2
+ <img src="https://neuronum.net/static/neuronum.svg" alt="Neuronum" width="100">
3
+ </h1>
4
+ <h4 align="center">Build, connect, and automate serverless data infrastructures with Neuronum</h4>
5
+
6
+ <p align="center">
7
+ <a href="https://neuronum.net">
8
+ <img src="https://img.shields.io/badge/Website-Neuronum-blue" alt="Website">
9
+ </a>
10
+ <a href="https://github.com/neuronumcybernetics/neuronum">
11
+ <img src="https://img.shields.io/badge/Docs-Read%20now-green" alt="Documentation">
12
+ </a>
13
+ <img src="https://img.shields.io/badge/Version-5.4.0-blueviolet" alt="Lib Version">
14
+ <img src="https://img.shields.io/badge/Python-3.9%2B-yellow" alt="Python Version">
15
+ </p>
16
+
17
+ ---
5
18
 
6
19
  ## **Getting Started Goals**
7
20
  - Learn about Neuronum
@@ -25,11 +38,11 @@ Neuronum is a framework to build serverless connected app & data gateways automa
25
38
  - Streams (STX): Stream, synchronize, and control data in real time
26
39
 
27
40
  **Cellai**
28
- Cellai is a CLI-based assistant that helps you interact with Neuronum
41
+ - Cellai is a CLI-based assistant that helps you interact with Neuronum
29
42
 
30
43
 
31
44
  #### Requirements
32
- - Python >= 3.8 -> https://www.python.org/downloads/
45
+ - Python >= 3.9 -> https://www.python.org/downloads/
33
46
  - neuronum >= 5.4.0 -> https://pypi.org/project/neuronum/
34
47
 
35
48
 
@@ -81,7 +94,18 @@ Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
81
94
 
82
95
 
83
96
  ### **Interact with Neuronum**
97
+ Web-based:
84
98
  1. Visit: https://neuronum.net
85
99
  2. Connect your Cell
86
100
  3. Explore Transmitters
87
- 4. Activate Transmitters
101
+ 4. Activate Transmitters
102
+
103
+ Code-based:
104
+ ```python
105
+ TX = txID # select the Transmitter TX
106
+ data = {
107
+ "say": "hello",
108
+ }
109
+ tx_response = await cell.activate_tx(TX, data) # activate TX - > get response back
110
+ print(tx_response)
111
+ ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 5.4.0
3
+ Version: 5.4.1
4
4
  Summary: Official client library to interact with the Neuronum Network
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -31,10 +31,23 @@ Dynamic: requires-dist
31
31
  Dynamic: requires-python
32
32
  Dynamic: summary
33
33
 
34
- ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
34
+ <h1 align="center">
35
+ <img src="https://neuronum.net/static/neuronum.svg" alt="Neuronum" width="100">
36
+ </h1>
37
+ <h4 align="center">Build, connect, and automate serverless data infrastructures with Neuronum</h4>
35
38
 
36
- [![Website](https://img.shields.io/badge/Website-Neuronum-blue)](https://neuronum.net) [![Documentation](https://img.shields.io/badge/Docs-Read%20now-green)](https://github.com/neuronumcybernetics/neuronum)
39
+ <p align="center">
40
+ <a href="https://neuronum.net">
41
+ <img src="https://img.shields.io/badge/Website-Neuronum-blue" alt="Website">
42
+ </a>
43
+ <a href="https://github.com/neuronumcybernetics/neuronum">
44
+ <img src="https://img.shields.io/badge/Docs-Read%20now-green" alt="Documentation">
45
+ </a>
46
+ <img src="https://img.shields.io/badge/Version-5.4.0-blueviolet" alt="Lib Version">
47
+ <img src="https://img.shields.io/badge/Python-3.9%2B-yellow" alt="Python Version">
48
+ </p>
37
49
 
50
+ ---
38
51
 
39
52
  ## **Getting Started Goals**
40
53
  - Learn about Neuronum
@@ -58,11 +71,11 @@ Neuronum is a framework to build serverless connected app & data gateways automa
58
71
  - Streams (STX): Stream, synchronize, and control data in real time
59
72
 
60
73
  **Cellai**
61
- Cellai is a CLI-based assistant that helps you interact with Neuronum
74
+ - Cellai is a CLI-based assistant that helps you interact with Neuronum
62
75
 
63
76
 
64
77
  #### Requirements
65
- - Python >= 3.8 -> https://www.python.org/downloads/
78
+ - Python >= 3.9 -> https://www.python.org/downloads/
66
79
  - neuronum >= 5.4.0 -> https://pypi.org/project/neuronum/
67
80
 
68
81
 
@@ -114,7 +127,18 @@ Visit: https://github.com/neuronumcybernetics/neuronum/tree/main/how_tos/nodes
114
127
 
115
128
 
116
129
  ### **Interact with Neuronum**
130
+ Web-based:
117
131
  1. Visit: https://neuronum.net
118
132
  2. Connect your Cell
119
133
  3. Explore Transmitters
120
134
  4. Activate Transmitters
135
+
136
+ Code-based:
137
+ ```python
138
+ TX = txID # select the Transmitter TX
139
+ data = {
140
+ "say": "hello",
141
+ }
142
+ tx_response = await cell.activate_tx(TX, data) # activate TX - > get response back
143
+ print(tx_response)
144
+ ```
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='neuronum',
5
- version='5.4.0',
5
+ version='5.4.1',
6
6
  author='Neuronum Cybernetics',
7
7
  author_email='welcome@neuronum.net',
8
8
  description='Official client library to interact with the Neuronum Network',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes