A flask extension to support user view and manage redis with beautiful interface.
Project description
flask-redisboard
A flask extension to support user view and manage redis with beautiful interface.
Get Started
Installation is easy:
$ pip install flask-redisboard
Try to run
Just type command:
$ redisboard
Run in flask
Initialize the extension:
from flask_redisboard import RedisBoardExtension
...
board = RedisBoardExtension(app)
Also support for factory pattern:
from flask_redisboard import RedisBoardExtension
from flask import Flask
board = RedisBoardExtension()
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY'] = '123456'
board.init_app(app)
app.run()
if __name__ == '__main__':
create_app()
Now, you can go to 127.0.0.1:5000/redisboard
Preview
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-Redisboard-0.1.9.tar.gz
(3.5 MB
view hashes)