All Projects → jhao104 → Ssdbadmin

jhao104 / Ssdbadmin

Licence: apache-2.0
SSDB可视化界面管理工具 ssdb web manager tool

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Ssdbadmin

Python Examples
Python examples from my answers on Stackoverflow and other short scripts.
Stars: ✭ 101 (-69.94%)
Mutual labels:  flask, gui
Deep Learning Training Gui
Train and predict your model on pre-trained deep learning models through the GUI (web app). No more many parameters, no more data preprocessing.
Stars: ✭ 85 (-74.7%)
Mutual labels:  flask, gui
Instapy Gui
gui for instapy automation
Stars: ✭ 313 (-6.85%)
Mutual labels:  gui
Tasking Manager
Tasking Manager - The tool to team up for mapping in OpenStreetMap
Stars: ✭ 328 (-2.38%)
Mutual labels:  flask
Cryptr
Cryptr: a GUI for Hashicorp's Vault
Stars: ✭ 324 (-3.57%)
Mutual labels:  gui
Dotsui
Unity engine DOTS UI solution
Stars: ✭ 319 (-5.06%)
Mutual labels:  gui
Zoonavigator
Web-based ZooKeeper UI / editor / browser
Stars: ✭ 326 (-2.98%)
Mutual labels:  gui
Spleetergui
Windows desktop front end for Spleeter - AI source separation
Stars: ✭ 310 (-7.74%)
Mutual labels:  gui
Redis Monitor
💻 A very simple redis monitor based on Flask and React. 一个部署简单的 redis 监控程序,使用 Flask 和 React 完成。
Stars: ✭ 330 (-1.79%)
Mutual labels:  flask
Ctfd
CTFs as you need them
Stars: ✭ 3,768 (+1021.43%)
Mutual labels:  flask
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+6040.48%)
Mutual labels:  gui
Graphicaltools
Modules that mix PowerShell and GUIs/CUIs! - built on Avalonia and gui.cs
Stars: ✭ 318 (-5.36%)
Mutual labels:  gui
Flask Smorest
DB agnostic framework to build auto-documented REST APIs with Flask and marshmallow
Stars: ✭ 317 (-5.65%)
Mutual labels:  flask
Flask Bookshelf
Flask Series
Stars: ✭ 327 (-2.68%)
Mutual labels:  flask
Flask Appbuilder
Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more. Demo (login with guest/welcome) - http://flaskappbuilder.pythonanywhere.com/
Stars: ✭ 3,603 (+972.32%)
Mutual labels:  flask
Lazywinadmin gui
PowerShell Script that generates a GUI/WinForms loaded with tons of functions
Stars: ✭ 326 (-2.98%)
Mutual labels:  gui
Stuntrally
The main repository containing Stunt Rally sources and game data. A 3D racing game based on VDrift and OGRE with track editor.
Stars: ✭ 314 (-6.55%)
Mutual labels:  gui
Alchemy
An experimental GUI framework for Rust, backed by per-platform native widgets. React, AppKit/UIKit inspired. EXPERIMENTAL, runs on Cocoa right now. ;P
Stars: ✭ 321 (-4.46%)
Mutual labels:  gui
Dynamon
😈 Dynamon is GUI client for DynamoDB, can connect local dynamodb.
Stars: ✭ 324 (-3.57%)
Mutual labels:  gui
Imgui Plot
An improved plot widget for Dear ImGui, aimed at displaying audio data
Stars: ✭ 332 (-1.19%)
Mutual labels:  gui

SSDBAdmin

Build Status py3 Requirements Status

SSDB数据库的可视化界面管理工具

功能

提供SSDB数据的hash/zset/kv/queue等数据结构的增删改查等功能 

依赖

  • Python 3.x (Python2请移步py2)

  • Flask

安装

下载项目到本地git clone https://github.com/jhao104/SSDBAdmin.git

编辑配置文件SSDBAdmin/setting.py:

# SSDB config
DB_CONFIG = [
    {
        "host": "127.0.0.1",
        "port": 8888
    },
    {
        "host": "127.0.0.1",
        "port": 8899
    }
]

# service config
SERVICE_CONFIG = {
    "host": "0.0.0.0",
    "port": 5000,
    "debug": True
}

hostport修改成正确值。

安装依赖包: pip install -r requirements.txt

启动: python run.py

访问:http://127.0.0.1:5000/ssdbadmin

Docker

$ docker pull jhao104/ssdb-admin

$ docker run --env DB_CONFIG=127.0.0.1:8888 -p 5000:5000 jhao104/ssdb-admin

Release notes

  • 3.0.0

    • 使用python3版本,不再支持python2。 python2用户请使用2.0.0及以下版本。
  • 2.0.0

    • python2版本分割。
  • 1.1

    • 使用redis.py模块代替ssdb-py模块,ssdb-py模块长期没有维护更新,许多新功能不支持。
  • 1.0

    • First release of SSDBAdmin;
    • List/Hashmap/Set/KeyValue 操作;

Screenshots

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].