1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
Metadata-Version: 1.1
Name: django-simple-redis-admin
Version: 1.4.0
Summary: A django admin application to manage redis cache keys.
Home-page: https://github.com/nicholasserra/django-simple-redis-admin
Author: Nicholas Serra
Author-email: nick@528hazelwood.com
License: UNKNOWN
Description: [](https://travis-ci.org/nicholasserra/django-simple-redis-admin)
django-simple-redis-admin
=========
`django-simple-redis-admin` is an addition to your Django admin panel that allows you to view and delete your Redis keys.
Requirements
------------
* Django >= 1.8 <= 1.10
* A Django redis cache backend. I recommend [django-redis-cache](https://github.com/sebleier/django-redis-cache)
Installation
------------
`django-simple-redis-admin` can be installed via pip.
```
pip install django-simple-redis-admin
```
Then just add `redis_admin` to your `INSTALLED_APPS`.
Why simple?
-----------
This package does not use models, so no database tables need to be created. Just add to INSTALLED_APPS and go.
Users must have is_superuser == True to view the Redis admin. No django admin logs are created with this package.
To Do
-----
* Editing keys
* Better representation for Redis sets
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
|