Network Online - Open Beta

Build Real-Time Data Networks
& Move Your Data Smarter
End-to-end encrypted.
No backend to manage.

transmit.py
import asyncio
from neuronum import Cell

async def main():
    async with Cell() as cell:
        tx_response = await cell.activate_tx(
          "receiver_cell_id",
          {"msg": "Ping"}
        )
        print(tx_response)

asyncio.run(main())
receive.py
import asyncio
from neuronum import Cell

async def main():
    async with Cell() as cell:
        async for tx in cell.sync():
            data = tx.get("data", {})

            await cell.tx_response(
                tx.get("transmitter_id"),
                {"msg": "Pong"},
                data.get("public_key", "")
            )

asyncio.run(main())

Community Pricing Build, Test & Ship without Your Credit Card

Community

Build & Test Environment
Free Forever
  • Neuronum SDK
  • E2E Encrypted
  • No Credit Card
  • Rate Limit
Get Started