dj-redis-panel is django admin panel that allows you read and edit data in your redis instance
directly from the django admin. It is free and open source software available below:
Just install it:
pip install dj-redis-panel
and add it to your settings under installed apps:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'dj_redis_panel', # Add this line
# ... your other apps
]
Then enjoy being able to interact with redis visually from within django