neuronum 2.0.8__tar.gz → 3.0.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,120 @@
1
+ Metadata-Version: 2.4
2
+ Name: neuronum
3
+ Version: 3.0.1
4
+ Summary: Official client library to interact with the Neuronum Network
5
+ Home-page: https://neuronum.net
6
+ Author: Neuronum Cybernetics
7
+ Author-email: welcome@neuronum.net
8
+ Project-URL: GitHub, https://github.com/neuronumcybernetics/neuronum
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: aiohttp
16
+ Requires-Dist: websockets
17
+ Requires-Dist: click
18
+ Requires-Dist: questionary
19
+ Requires-Dist: python-dotenv
20
+ Requires-Dist: bleak
21
+ Requires-Dist: requests
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: home-page
28
+ Dynamic: license-file
29
+ Dynamic: project-url
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ ![Neuronum Logo](https://neuronum.net/static/logo_pip.png "Neuronum")
35
+
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)
37
+
38
+ A Getting Started into the Neuronum Network: Build, deploy and automate serverless data infrastructures for an interconnected world
39
+
40
+ ### **What's New in neuronum 3.0.1**
41
+ - Added CLI commands: `neuronum connect-node` and `neuronum disconnect-node` for improved Node management and seamless integration.
42
+
43
+ ### **New Feature Set**
44
+ - **Cell/Cell-CLI**: Create and manage your Neuronum Cell, a unique identity for interacting with the Network, directly from the command line.
45
+ - **Nodes/Node-CLI**: Setup and manage Neuronum Nodes, the software and hardware components that power the Network, via the command line.
46
+ - **Transmitters (TX)**: Automate economic data transfer using predefined templates for standardized data exchange.
47
+ - **Circuits (CTX)**: Store, manage, and retrieve structured data with Circuits, a cloud-based Key-Value-Label database.
48
+ - **Streams (STX)**: Stream, synchronize, and control data in real time, enabling dynamic and responsive data flows.
49
+ - **Contracts/Tokens**: Automate service exchange and authorization, ensuring secure interactions between Cells and Nodes.
50
+ - **Scan**: Discover Cells and Nodes via BLE-based scanning, powered by Bleak, for seamless network integration.
51
+ - **Cellai**: A local AI assistant currently in development (version 0.0.1). While still evolving, Cellai is designed to automate communication between Cells and Nodes, optimizing intelligent data flow and network interactions in future releases.
52
+
53
+
54
+ ## Getting Started Goals
55
+ - **Neuronum Cell**: Create a Cell to start interacting with the Network
56
+ - **Neuronum Node**: Setup a Node that streams and syncs the message: Hello, Neuronum! in real-time
57
+
58
+
59
+ ### Requirements
60
+ - Python >= 3.8 -> https://www.python.org/downloads/
61
+ - neuronum >= 3.0.0 -> https://pypi.org/project/neuronum/
62
+
63
+
64
+ ### Installation
65
+ Install the Neuronum library:
66
+ ```sh
67
+ $ pip install neuronum # install the neuronum dependencies
68
+ ```
69
+
70
+ ### Neuronum Cell
71
+ Create your Cell:
72
+ ```sh
73
+ $ neuronum create-cell # create Cell / select network and type
74
+ ```
75
+
76
+ View connected Cell:
77
+ ```sh
78
+ $ neuronum view-cell # view Cell ID / output = Connected Cell: 'your_cell_id'"
79
+ ```
80
+
81
+ ### Neuronum Node
82
+ Initialize your Node:
83
+ ```sh
84
+ $ neuronum init-node # initialize a Node with default template
85
+ ```
86
+
87
+ cd into Node Folder:
88
+ ```sh
89
+ $ cd node_nodeID # change directory
90
+ ```
91
+
92
+ Start your Node:
93
+ ```sh
94
+ $ neuronum start-node # start Node / scan = Off / output = "Hello, Neuronum!"
95
+ ```
96
+
97
+ Stop your Node:
98
+ ```sh
99
+ $ neuronum stop-node # stop Node
100
+ ```
101
+
102
+ Connect your Node:
103
+ ```sh
104
+ $ neuronum connect-node # connect your Node / Node description = Test Node
105
+ ```
106
+
107
+ Update your Node:
108
+ ```sh
109
+ $ neuronum update-node # update your Node
110
+ ```
111
+
112
+ Disconnect your Node:
113
+ ```sh
114
+ $ neuronum disconnect-node # disconnect your Node
115
+ ```
116
+
117
+ Delete your Node:
118
+ ```sh
119
+ $ neuronum delete-node # delete your Node
120
+ ```
@@ -0,0 +1,87 @@
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
+
5
+ A Getting Started into the Neuronum Network: Build, deploy and automate serverless data infrastructures for an interconnected world
6
+
7
+ ### **What's New in neuronum 3.0.1**
8
+ - Added CLI commands: `neuronum connect-node` and `neuronum disconnect-node` for improved Node management and seamless integration.
9
+
10
+ ### **New Feature Set**
11
+ - **Cell/Cell-CLI**: Create and manage your Neuronum Cell, a unique identity for interacting with the Network, directly from the command line.
12
+ - **Nodes/Node-CLI**: Setup and manage Neuronum Nodes, the software and hardware components that power the Network, via the command line.
13
+ - **Transmitters (TX)**: Automate economic data transfer using predefined templates for standardized data exchange.
14
+ - **Circuits (CTX)**: Store, manage, and retrieve structured data with Circuits, a cloud-based Key-Value-Label database.
15
+ - **Streams (STX)**: Stream, synchronize, and control data in real time, enabling dynamic and responsive data flows.
16
+ - **Contracts/Tokens**: Automate service exchange and authorization, ensuring secure interactions between Cells and Nodes.
17
+ - **Scan**: Discover Cells and Nodes via BLE-based scanning, powered by Bleak, for seamless network integration.
18
+ - **Cellai**: A local AI assistant currently in development (version 0.0.1). While still evolving, Cellai is designed to automate communication between Cells and Nodes, optimizing intelligent data flow and network interactions in future releases.
19
+
20
+
21
+ ## Getting Started Goals
22
+ - **Neuronum Cell**: Create a Cell to start interacting with the Network
23
+ - **Neuronum Node**: Setup a Node that streams and syncs the message: Hello, Neuronum! in real-time
24
+
25
+
26
+ ### Requirements
27
+ - Python >= 3.8 -> https://www.python.org/downloads/
28
+ - neuronum >= 3.0.0 -> https://pypi.org/project/neuronum/
29
+
30
+
31
+ ### Installation
32
+ Install the Neuronum library:
33
+ ```sh
34
+ $ pip install neuronum # install the neuronum dependencies
35
+ ```
36
+
37
+ ### Neuronum Cell
38
+ Create your Cell:
39
+ ```sh
40
+ $ neuronum create-cell # create Cell / select network and type
41
+ ```
42
+
43
+ View connected Cell:
44
+ ```sh
45
+ $ neuronum view-cell # view Cell ID / output = Connected Cell: 'your_cell_id'"
46
+ ```
47
+
48
+ ### Neuronum Node
49
+ Initialize your Node:
50
+ ```sh
51
+ $ neuronum init-node # initialize a Node with default template
52
+ ```
53
+
54
+ cd into Node Folder:
55
+ ```sh
56
+ $ cd node_nodeID # change directory
57
+ ```
58
+
59
+ Start your Node:
60
+ ```sh
61
+ $ neuronum start-node # start Node / scan = Off / output = "Hello, Neuronum!"
62
+ ```
63
+
64
+ Stop your Node:
65
+ ```sh
66
+ $ neuronum stop-node # stop Node
67
+ ```
68
+
69
+ Connect your Node:
70
+ ```sh
71
+ $ neuronum connect-node # connect your Node / Node description = Test Node
72
+ ```
73
+
74
+ Update your Node:
75
+ ```sh
76
+ $ neuronum update-node # update your Node
77
+ ```
78
+
79
+ Disconnect your Node:
80
+ ```sh
81
+ $ neuronum disconnect-node # disconnect your Node
82
+ ```
83
+
84
+ Delete your Node:
85
+ ```sh
86
+ $ neuronum delete-node # delete your Node
87
+ ```