Registry / database / burner-redis

burner-redis

JSON →
library0.1.7pypypi✓ verified 81d ago

An embedded, in-process Redis-compatible database implemented in Python, ideal for testing and local development without external dependencies. Current version 0.1.7, updated periodically.

pip install burner-redis
INSTALL
IMPORT
SIG · BURNER-REDIS
B
burner-redis
databasepythonv0.1.7
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

BurnerRedis
from burner_redis import BurnerRedis
from burner_redis import BurnerClient

Create an embedded Redis server and run basic commands.

from burner_redis import BurnerClient import os client = BurnerClient() client.set('key', 'value') print(client.get('key')) # b'value'
Debug
Known issues
gotchaCommunication is via localhost TCP (port 6379 by default). Ensure no other Redis instance is running on that port to avoid port conflicts.
fix
Use `client = BurnerClient(port=0)` to auto-assign a free port.
affects: all
deprecatedThe `from burner_redis import BurnerRedis` alias is deprecated in favor of `BurnerClient`.
fix
Use `from burner_redis import BurnerClient`.
affects: <=0.1.6
Upgrade
Version history
0.1.7latest on PyPI · released May 8, 2026
Audit
Dependencies
attrsrequiredUsed for class definitions
clickrequiredCommand-line interface
Agent activity
19 hits · last 30 days
node
16
Amazon
1
OpenAI (training)
1
Resources
burner-redis — pip install burner-redis · libregistry