neuronum 5.0.1__tar.gz → 5.1.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 5.0.1
3
+ Version: 5.1.0
4
4
  Summary: Official client library to interact with the Neuronum Network
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -35,23 +35,23 @@ Dynamic: summary
35
35
  [![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)
36
36
 
37
37
 
38
- ### **Getting Started Goals**
38
+ ## **Getting Started Goals**
39
39
  - Learn about Neuronum
40
40
  - Connect to Neuronum
41
41
  - Build on Neuronum
42
42
 
43
43
 
44
44
  ### **About Neuronum**
45
- Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
45
+ Neuronum is a framework to build serverless connected app & data gateways automating the processing and distribution of data transmission, storage, and streaming.
46
46
 
47
47
 
48
- ### **Neuronum Attributes**
48
+ ### **Features**
49
49
  **Cell & Nodes**
50
50
  - Cell: Account to connect and interact with Neuronum
51
- - Nodes: Soft- and Hardware components hosting data gateways
51
+ - Nodes: Soft- and Hardware components hosting gateways
52
52
 
53
- **Data Gateways**
54
- - Transmitters (TX): Automate data transfer in standardized formats
53
+ **Gateways**
54
+ - Transmitters (TX): Securely transmit and receive data packages
55
55
  - Circuits (CTX): Store data in cloud-based key-value-label databases
56
56
  - Streams (STX): Stream, synchronize, and control data in real time
57
57
 
@@ -75,6 +75,12 @@ Create Cell:
75
75
  neuronum create-cell # create Cell / Cell type / Cell network
76
76
  ```
77
77
 
78
+ or
79
+
80
+ Connect Cell:
81
+ ```sh
82
+ neuronum connect-cell # connect Cell
83
+ ```
78
84
 
79
85
  View connected Cell:
80
86
  ```sh
@@ -103,3 +109,8 @@ Stop Node:
103
109
  ```sh
104
110
  neuronum stop-node # stop Node
105
111
  ```
112
+
113
+ Connect Node to Neuronum:
114
+ ```sh
115
+ neuronum connect-node # connect Node
116
+ ```
@@ -3,23 +3,23 @@
3
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
4
 
5
5
 
6
- ### **Getting Started Goals**
6
+ ## **Getting Started Goals**
7
7
  - Learn about Neuronum
8
8
  - Connect to Neuronum
9
9
  - Build on Neuronum
10
10
 
11
11
 
12
12
  ### **About Neuronum**
13
- Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
13
+ Neuronum is a framework to build serverless connected app & data gateways automating the processing and distribution of data transmission, storage, and streaming.
14
14
 
15
15
 
16
- ### **Neuronum Attributes**
16
+ ### **Features**
17
17
  **Cell & Nodes**
18
18
  - Cell: Account to connect and interact with Neuronum
19
- - Nodes: Soft- and Hardware components hosting data gateways
19
+ - Nodes: Soft- and Hardware components hosting gateways
20
20
 
21
- **Data Gateways**
22
- - Transmitters (TX): Automate data transfer in standardized formats
21
+ **Gateways**
22
+ - Transmitters (TX): Securely transmit and receive data packages
23
23
  - Circuits (CTX): Store data in cloud-based key-value-label databases
24
24
  - Streams (STX): Stream, synchronize, and control data in real time
25
25
 
@@ -43,6 +43,12 @@ Create Cell:
43
43
  neuronum create-cell # create Cell / Cell type / Cell network
44
44
  ```
45
45
 
46
+ or
47
+
48
+ Connect Cell:
49
+ ```sh
50
+ neuronum connect-cell # connect Cell
51
+ ```
46
52
 
47
53
  View connected Cell:
48
54
  ```sh
@@ -70,4 +76,9 @@ neuronum start-node # start Node
70
76
  Stop Node:
71
77
  ```sh
72
78
  neuronum stop-node # stop Node
79
+ ```
80
+
81
+ Connect Node to Neuronum:
82
+ ```sh
83
+ neuronum connect-node # connect Node
73
84
  ```
@@ -249,10 +249,11 @@ def delete_cell():
249
249
  @click.command()
250
250
  @click.option('--sync', multiple=True, default=None, help="Optional stream IDs for sync.")
251
251
  @click.option('--stream', multiple=True, default=None, help="Optional stream ID for stream.")
252
- def init_node(sync, stream):
253
- asyncio.run(async_init_node(sync, stream))
252
+ @click.option('--app', is_flag=True, help="Generate a Node with app template")
253
+ def init_node(sync, stream, app):
254
+ asyncio.run(async_init_node(sync, stream, app))
254
255
 
255
- async def async_init_node(sync, stream):
256
+ async def async_init_node(sync, stream, app):
256
257
  credentials_folder_path = Path.home() / ".neuronum"
257
258
  env_path = credentials_folder_path / ".env"
258
259
 
@@ -319,13 +320,35 @@ async def async_init_node(sync, stream):
319
320
  await asyncio.to_thread(gitignore_path.write_text, ".env\n")
320
321
 
321
322
  nodemd_path = project_path / "NODE.md"
322
- await asyncio.to_thread(nodemd_path.write_text, """### Getting started template: Neuronum NODE.md
323
- ### Use this .md file to add instructions on how to interact with your Node
323
+ await asyncio.to_thread(nodemd_path.write_text, """### NODE.md: How to interact with this Node
324
324
 
325
325
  ```json
326
326
  {
327
- "Use Case": "Getting started Node streaming: Hello, Neuronum!",
328
- "Requirements": [
327
+ "info": {
328
+ "use_case": "This Node...",
329
+ "github": "https://github.com/user"
330
+ },
331
+ "gateways": [
332
+ {
333
+ "type": "stream",
334
+ "id": "id::stx",
335
+ "link": "https://neuronum.net/stream/id::stx"
336
+ },
337
+ {
338
+ "type": "transmitter",
339
+ "id": "id::tx",
340
+ "link": "https://neuronum.net/tx/id::tx",
341
+ }
342
+ {
343
+ "type": "circuit",
344
+ "id": "id::ctx",
345
+ "link": "https://neuronum.net/circuit/id::ctx",
346
+ }
347
+ ],
348
+ "initialization": {
349
+ "command": "neuronum init-node --sync id::stx"
350
+ },
351
+ "requirements": [
329
352
  {
330
353
  "name": "Python",
331
354
  "version": ">= 3.8",
@@ -333,12 +356,10 @@ async def async_init_node(sync, stream):
333
356
  },
334
357
  {
335
358
  "name": "neuronum",
336
- "version": ">= 4.0.0",
359
+ "version": ">= 5.1.0",
337
360
  "link": "https://pypi.org/project/neuronum/"
338
361
  }
339
- ],
340
- "Installation": "pip install neuronum",
341
- "Initialization": "neuronum init-node"
362
+ ]
342
363
  }
343
364
  ```"""
344
365
  )
@@ -418,7 +439,7 @@ async def main():
418
439
  asyncio.run(main())
419
440
  """)
420
441
 
421
- if not sync and not stream:
442
+ if not sync and not stream and not app:
422
443
  sync_path = project_path / f"sync_{stx.replace('::stx', '')}.py"
423
444
  sync_path.write_text(f"""\
424
445
  import asyncio
@@ -476,6 +497,56 @@ async def main():
476
497
  }}
477
498
  await cell.stream(label, data)
478
499
 
500
+ asyncio.run(main())
501
+ """)
502
+
503
+ if app:
504
+ app_path = project_path / "app.py"
505
+ app_path.write_text(f"""\
506
+ import asyncio
507
+ import neuronum
508
+ import os
509
+ from dotenv import load_dotenv
510
+
511
+ load_dotenv()
512
+ host = os.getenv("HOST")
513
+ password = os.getenv("PASSWORD")
514
+ network = os.getenv("NETWORK")
515
+ synapse = os.getenv("SYNAPSE")
516
+
517
+ cell = neuronum.Cell(
518
+ host=host,
519
+ password=password,
520
+ network=network,
521
+ synapse=synapse
522
+ )
523
+
524
+ async def main():
525
+ STX = "id::stx"
526
+ async for operation in cell.sync(STX):
527
+ txID = operation.get("txID")
528
+
529
+ if txID == "id::tx":
530
+ client = operation.get("operator")
531
+ data = {{
532
+ "response": "TX activated!"
533
+ }}
534
+ await cell.tx_response(txID, client, data)
535
+
536
+ if txID == "id::tx":
537
+ client = operation.get("operator")
538
+ data = {{
539
+ "response": "TX activated!"
540
+ }}
541
+ await cell.tx_response(txID, client, data)
542
+
543
+ if txID == "id::tx":
544
+ client = operation.get("operator")
545
+ data = {{
546
+ "response": "TX activated!"
547
+ }}
548
+ await cell.tx_response(txID, client, data)
549
+
479
550
  asyncio.run(main())
480
551
  """)
481
552
 
@@ -488,7 +559,7 @@ def start_node(d):
488
559
  click.echo("Starting Node...")
489
560
 
490
561
  project_path = Path.cwd()
491
- script_files = glob.glob("sync_*.py") + glob.glob("stream_*.py")
562
+ script_files = glob.glob("sync_*.py") + glob.glob("stream_*.py") + glob.glob("app.py")
492
563
 
493
564
  processes = []
494
565
  system_name = platform.system()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 5.0.1
3
+ Version: 5.1.0
4
4
  Summary: Official client library to interact with the Neuronum Network
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -35,23 +35,23 @@ Dynamic: summary
35
35
  [![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)
36
36
 
37
37
 
38
- ### **Getting Started Goals**
38
+ ## **Getting Started Goals**
39
39
  - Learn about Neuronum
40
40
  - Connect to Neuronum
41
41
  - Build on Neuronum
42
42
 
43
43
 
44
44
  ### **About Neuronum**
45
- Neuronum is a framework to build serverless data gateways automating the processing and distribution of data transmission, storage, and streaming.
45
+ Neuronum is a framework to build serverless connected app & data gateways automating the processing and distribution of data transmission, storage, and streaming.
46
46
 
47
47
 
48
- ### **Neuronum Attributes**
48
+ ### **Features**
49
49
  **Cell & Nodes**
50
50
  - Cell: Account to connect and interact with Neuronum
51
- - Nodes: Soft- and Hardware components hosting data gateways
51
+ - Nodes: Soft- and Hardware components hosting gateways
52
52
 
53
- **Data Gateways**
54
- - Transmitters (TX): Automate data transfer in standardized formats
53
+ **Gateways**
54
+ - Transmitters (TX): Securely transmit and receive data packages
55
55
  - Circuits (CTX): Store data in cloud-based key-value-label databases
56
56
  - Streams (STX): Stream, synchronize, and control data in real time
57
57
 
@@ -75,6 +75,12 @@ Create Cell:
75
75
  neuronum create-cell # create Cell / Cell type / Cell network
76
76
  ```
77
77
 
78
+ or
79
+
80
+ Connect Cell:
81
+ ```sh
82
+ neuronum connect-cell # connect Cell
83
+ ```
78
84
 
79
85
  View connected Cell:
80
86
  ```sh
@@ -103,3 +109,8 @@ Stop Node:
103
109
  ```sh
104
110
  neuronum stop-node # stop Node
105
111
  ```
112
+
113
+ Connect Node to Neuronum:
114
+ ```sh
115
+ neuronum connect-node # connect Node
116
+ ```
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='neuronum',
5
- version='5.0.1',
5
+ version='5.1.0',
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