Skip to main content

Plugin for dbreak to handle Redis connections

Project description

dbreak-redis

A plugin for dbreak that allows it to work with Redis objects.

Installation

Install from PyPi using pip:

pip install dbreak-redis

Usage

There's no need to import the plugin separately, just pass a Redis object to dbreak.show_console().

import redis
import dbreak

# Set up a localhost Redis connection
# This assumes you've got a Redis database running
connection = redis.Redis()

# Pause execution and enter the console
dbreak.start_console(connection)

You can use most valid Redis commands:

db[0]> set mykey myvalue

True

db[0]> get mykey

b'myvalue'

Use single or double quotes if you need to set a value with whitespace:

db[0]> set mykey "This is my value"

True

db[0]> get mykey

b'This is my value'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbreak-redis-0.0.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

dbreak_redis-0.0.1-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page