Try BotWire Memory directly — every button hits the real live API. No signup. Free tier
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.
Show all keys in your namespace.
# 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.