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.
- {neuronum-10.0.0/neuronum.egg-info → neuronum-10.0.1}/PKG-INFO +3 -1
- {neuronum-10.0.0 → neuronum-10.0.1}/README.md +2 -0
- neuronum-10.0.1/neuronum/__init__.py +1 -0
- {neuronum-10.0.0 → neuronum-10.0.1/neuronum.egg-info}/PKG-INFO +3 -1
- {neuronum-10.0.0 → neuronum-10.0.1}/setup.py +1 -1
- neuronum-10.0.0/neuronum/__init__.py +0 -1
- {neuronum-10.0.0 → neuronum-10.0.1}/LICENSE.md +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/cli/__init__.py +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/cli/main.py +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum/neuronum.py +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum.egg-info/SOURCES.txt +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum.egg-info/dependency_links.txt +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum.egg-info/entry_points.txt +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum.egg-info/requires.txt +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/neuronum.egg-info/top_level.txt +0 -0
- {neuronum-10.0.0 → neuronum-10.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: neuronum
|
|
3
|
-
Version: 10.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.
|
|
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__':
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from neuronum import Cell
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|