Metadata-Version: 2.1
Name: qredis
Version: 1.0.1
Summary: Qt based Redis GUI
Home-page: https://github.com/tiagocoutinho/qredis
Author: Tiago Coutinho
Author-email: coutinhotiago@gmail.com
License: UNKNOWN
Keywords: redis,GUI,Qt
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# QRedis

A [Python](http://www.python.org/), [Qt](http://www.qt.io/)
based [Redis](http://redis.io) client user interface.

![screenshot](doc/screen1.png)

## Help wanted

Open to people who want to colaborate.

- Would like to know which features you would like to have
- Pull requests are welcome
- You can always open an issue saying you want to be part of the team

## Installation

```console
$ pip install qredis
```

## Requirements

- Python >= 3.5
- [PyQt](http://riverbankcomputing.com/software/pyqt) 5
  (or in the future PySide)
- [redis-py](https://github.com/andymccurdy/redis-py)

## Usage

```console
$ qredis with no DB loaded on startup
$ qredis

$ connect to localhost:6379, db=0
$ qredis -p 6379

$ connect with unix socket, db=5
$ qredis -s /tmp/redis.sock -n 5
```

**That's all folks!**


