Playground

Try BotWire Memory directly — every button hits the real live API. No signup. Free tier

Your namespace: loading... — auto-generated per session. Nothing you store is secret; anyone who guesses your namespace can read it. For real apps, pick your own namespace in code.

SET

 

GET

 

LIST

Show all keys in your namespace.

 

DELETE

 

The equivalent Python

# pip install botwire
from botwire import Memory
mem = Memory("your-namespace")
mem.set("user_name", "Pedro")
mem.get("user_name")  # "Pedro"

Same thing, same namespace, different language. Your playground edits are visible to this Python snippet if you run it.