Metadata-Version: 2.1
Name: redis-workers
Version: 0.1.1
Summary: A tool that simplifies Redis usage for repeating tasks
Home-page: https://github.com/realiti4/redis-worker
Author: Onur Cetinkol
Author-email: realiti44@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: redis

# redis-worker 🎉
A tool that simplifies Redis usage for repeating tasks

# Usage
`docker-compose up` to start Redis server

Give rd.cache() a key, callable and arguments.

````
    rd = redisWorker()

    games = rd.cache('games', db_app.get_table, 'games', ['game_id', 'appid'])
```
