neuronum 10.0.0__tar.gz → 10.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 10.0.0
3
+ Version: 10.0.1
4
4
  Summary: An E2EE Data Engine
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -108,10 +108,12 @@ async def main():
108
108
  }
109
109
 
110
110
  # Use activate_tx() if you expect a response from the other cell
111
+ # Replace id with the actual Cell ID
111
112
  tx_response = await cell.activate_tx("id::cell", data)
112
113
  print(tx_response)
113
114
 
114
115
  # Stream data to another cell (no response expected)
116
+ # Replace id with the actual Cell ID
115
117
  await cell.stream("id::cell", data)
116
118
 
117
119
  if __name__ == '__main__':
@@ -73,10 +73,12 @@ async def main():
73
73
  }
74
74
 
75
75
  # Use activate_tx() if you expect a response from the other cell
76
+ # Replace id with the actual Cell ID
76
77
  tx_response = await cell.activate_tx("id::cell", data)
77
78
  print(tx_response)
78
79
 
79
80
  # Stream data to another cell (no response expected)
81
+ # Replace id with the actual Cell ID
80
82
  await cell.stream("id::cell", data)
81
83
 
82
84
  if __name__ == '__main__':
@@ -0,0 +1 @@
1
+ from .neuronum import Cell
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neuronum
3
- Version: 10.0.0
3
+ Version: 10.0.1
4
4
  Summary: An E2EE Data Engine
5
5
  Home-page: https://neuronum.net
6
6
  Author: Neuronum Cybernetics
@@ -108,10 +108,12 @@ async def main():
108
108
  }
109
109
 
110
110
  # Use activate_tx() if you expect a response from the other cell
111
+ # Replace id with the actual Cell ID
111
112
  tx_response = await cell.activate_tx("id::cell", data)
112
113
  print(tx_response)
113
114
 
114
115
  # Stream data to another cell (no response expected)
116
+ # Replace id with the actual Cell ID
115
117
  await cell.stream("id::cell", data)
116
118
 
117
119
  if __name__ == '__main__':
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='neuronum',
5
- version='10.0.0',
5
+ version='10.0.1',
6
6
  author='Neuronum Cybernetics',
7
7
  author_email='welcome@neuronum.net',
8
8
  description='An E2EE Data Engine',
@@ -1 +0,0 @@
1
- from neuronum import Cell
File without changes
File without changes
File without changes
File without changes