Metadata-Version: 2.0
Name: t-rex
Version: 0.0.5
Summary: Terminal Redis Explorer.
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: BSD
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: prompt-toolkit (>=2.0.0)
Requires-Dist: pygments
Requires-Dist: redis

# T-Rex: Terminal Redis Explorer

## Getting Started

### Installation:

```bash
pip install t_rex
```

### Running

```
t_rex
```

`C-d` will quit.
`Shift` key will change focus to the different windows.


### Development:

Make sure you're in a virtualenv that uses Python 3.7. 

Install the contents of the repo using pip in editable mode.

```bash
pip install -e .
```

Install the development dependencies:

```bash
pip install -r requirements_dev.txt
```

Install the pre-commit hook:

```bash
pre-commit install
```

This will make sure the Python code formatter `black` is run before you commit your file changes.

Run your test using `pytest`. 

```bash
pytest
```




