neuronum 2.0.7__tar.gz → 3.0.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,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: neuronum
3
+ Version: 3.0.0
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.0?**
41
+ - Complete library shift to async, ensuring non-blocking execution.
42
+ - New cell.scan() function, enabling discovery of Cells and Nodes via the Bleak BLE Client.
43
+
44
+ ### **New Feature Set**
45
+ - **Cells/Cell-CLI**: Create and manage your Neuronum Cell, your unique identity for interacting with the Network, directly from the command line.
46
+ - **Nodes/Node-CLI**: Setup and manage Neuronum Nodes, the software and hardware components that power the Network, via the command line.
47
+ - **Transmitters (TX)**: Automate economic data transfer using predefined templates for standardized data exchange.
48
+ - **Circuits (CTX)**: Store, manage, and retrieve structured data with Circuits, a cloud-based Key-Value-Label database.
49
+ - **Streams (STX)**: Stream, synchronize, and control data in real time, enabling dynamic and responsive data flows.
50
+ - **Contracts/Tokens**: Automate service exchange and authorization, ensuring secure interactions between Cells and Nodes.
51
+ - **Scan**: Discover Cells and Nodes via BLE-based scanning, powered by Bleak, for seamless network integration.
52
+ - **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.
53
+
54
+
55
+ ## Getting Started Goals
56
+ - **Neuronum Cell**: Create a Cell to start interacting with the Network
57
+ - **Neuronum Node**: Setup a Node that streams and syncs the message: Hello, Neuronum! in real-time
58
+
59
+
60
+ ### Requirements
61
+ - Python >= 3.8 -> https://www.python.org/downloads/
62
+ - neuronum >= 3.0.0 -> https://pypi.org/project/neuronum/
63
+
64
+
65
+ ### Installation
66
+ Install the Neuronum library:
67
+ ```sh
68
+ $ pip install neuronum # install the neuronum dependencies
69
+ ```
70
+
71
+ ### Neuronum Cell
72
+ Create your Cell:
73
+ ```sh
74
+ $ neuronum create-cell # create Cell / select network and type
75
+ ```
76
+
77
+ View connected Cell:
78
+ ```sh
79
+ $ neuronum view-cell # view Cell ID / output = Connected Cell: 'your_cell_id'"
80
+ ```
81
+
82
+ ### Neuronum Node
83
+ Initialize your Node:
84
+ ```sh
85
+ $ neuronum init-node # initialize a Node with default template
86
+ ```
87
+
88
+ cd into Node Folder:
89
+ ```sh
90
+ $ cd node_your_node_id # change directory
91
+ ```
92
+
93
+ Start your Node:
94
+ ```sh
95
+ $ neuronum start-node # start Node / scan = Off / output = "Hello, Neuronum!"
96
+ ```
97
+
98
+ Stop your Node:
99
+ ```sh
100
+ $ neuronum stop-node # stop Node
101
+ ```
@@ -0,0 +1,68 @@
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.0?**
8
+ - Complete library shift to async, ensuring non-blocking execution.
9
+ - New cell.scan() function, enabling discovery of Cells and Nodes via the Bleak BLE Client.
10
+
11
+ ### **New Feature Set**
12
+ - **Cells/Cell-CLI**: Create and manage your Neuronum Cell, your unique identity for interacting with the Network, directly from the command line.
13
+ - **Nodes/Node-CLI**: Setup and manage Neuronum Nodes, the software and hardware components that power the Network, via the command line.
14
+ - **Transmitters (TX)**: Automate economic data transfer using predefined templates for standardized data exchange.
15
+ - **Circuits (CTX)**: Store, manage, and retrieve structured data with Circuits, a cloud-based Key-Value-Label database.
16
+ - **Streams (STX)**: Stream, synchronize, and control data in real time, enabling dynamic and responsive data flows.
17
+ - **Contracts/Tokens**: Automate service exchange and authorization, ensuring secure interactions between Cells and Nodes.
18
+ - **Scan**: Discover Cells and Nodes via BLE-based scanning, powered by Bleak, for seamless network integration.
19
+ - **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.
20
+
21
+
22
+ ## Getting Started Goals
23
+ - **Neuronum Cell**: Create a Cell to start interacting with the Network
24
+ - **Neuronum Node**: Setup a Node that streams and syncs the message: Hello, Neuronum! in real-time
25
+
26
+
27
+ ### Requirements
28
+ - Python >= 3.8 -> https://www.python.org/downloads/
29
+ - neuronum >= 3.0.0 -> https://pypi.org/project/neuronum/
30
+
31
+
32
+ ### Installation
33
+ Install the Neuronum library:
34
+ ```sh
35
+ $ pip install neuronum # install the neuronum dependencies
36
+ ```
37
+
38
+ ### Neuronum Cell
39
+ Create your Cell:
40
+ ```sh
41
+ $ neuronum create-cell # create Cell / select network and type
42
+ ```
43
+
44
+ View connected Cell:
45
+ ```sh
46
+ $ neuronum view-cell # view Cell ID / output = Connected Cell: 'your_cell_id'"
47
+ ```
48
+
49
+ ### Neuronum Node
50
+ Initialize your Node:
51
+ ```sh
52
+ $ neuronum init-node # initialize a Node with default template
53
+ ```
54
+
55
+ cd into Node Folder:
56
+ ```sh
57
+ $ cd node_your_node_id # change directory
58
+ ```
59
+
60
+ Start your Node:
61
+ ```sh
62
+ $ neuronum start-node # start Node / scan = Off / output = "Hello, Neuronum!"
63
+ ```
64
+
65
+ Stop your Node:
66
+ ```sh
67
+ $ neuronum stop-node # stop Node
68
+ ```