Skip to main content

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

Screenshot Dashboard Screenshot Database
Screenshot Command Screenshot ServerInfo

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

Flask-Redisboard-0.2.0.tar.gz (3.5 MB view hashes)

Uploaded Source

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