Metadata-Version: 2.1
Name: limeutils
Version: 0.2.12
Summary: A small collection of classes and methods for dealing with Redis and more.
Home-page: https://github.com/dropkickdev/limeutils.git
License: MIT
Keywords: utils,python3
Author: enchance
Author-email: enchance@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: hiredis (>=2.0.0,<3.0.0)
Requires-Dist: pydantic (>=1.9.1,<2.0.0)
Requires-Dist: pytz (>=2022.1,<2023.0)
Requires-Dist: redis (>=4.3.4,<5.0.0)
Project-URL: Documentation, https://dropkickdev.github.io/limeutils/
Project-URL: Repository, https://github.com/dropkickdev/limeutils.git
Description-Content-Type: text/markdown

limeutils
=========

Limeutils is a small collection of classes and methods for dealing with Redis data and a few other helpful functions. Check out the documentation for information
 . More classes to be added as needed.

This package uses [Pydantic models][pydantic] to validate its data.

Installation
------------

### Install with `pip`

This is the recommended way to install Limeutils.

```
pip install limeutils
```

### Install with repo

```
pip install git+https://github.com/dropkickdev/limeutils.git@develop#egg=limeutils
```

### Install with `git clone`

Simply install from the root folder

```
# This can also be a fork
git clone https://github.com/dropkickdev/limeutils.git

cd limeutils
pip install .
```


[pydantic]: https://pydantic-docs.helpmanual.io/ 'Pydantic'

## Documentation

View the documentation at: https://dropkickdev.github.io/limeutils/

