├── .coveragerc ├── .github ├── FUNDING.yml └── workflows │ └── main.yaml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── README.txt ├── conftest.py ├── example.py ├── pytest.ini ├── readthedocs-requirements.txt ├── redisworks ├── __init__.py ├── helper.py └── redisworks.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_redisworks.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Primary Author: 2 | * Seperman 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/README.txt -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/conftest.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/example.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --pdbcls=IPython.terminal.debugger:Pdb 3 | -------------------------------------------------------------------------------- /readthedocs-requirements.txt: -------------------------------------------------------------------------------- 1 | numpydoc==0.4 -------------------------------------------------------------------------------- /redisworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/redisworks/__init__.py -------------------------------------------------------------------------------- /redisworks/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/redisworks/helper.py -------------------------------------------------------------------------------- /redisworks/redisworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/redisworks/redisworks.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dotobject==1.3.1 2 | redis==4.3.4 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_redisworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seperman/redisworks/HEAD/tests/test_redisworks.py --------------------------------------------------------------------------------