Metadata-Version: 2.1
Name: saq
Version: 0.0.2
Summary: Distributed Python job queue with asyncio and redis
Home-page: https://github.com/tobymao/saq
Author: Toby Mao
Author-email: toby.mao@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Systems Administration
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aioredis (>=2.0)
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: pylint ; extra == 'dev'
Provides-Extra: hiredis
Requires-Dist: aioredis[hiredis] (>=2.0) ; extra == 'hiredis'
Provides-Extra: web
Requires-Dist: aiohttp ; extra == 'web'

# SAQ
SAQ (Simple Async Queue) is a simple and performant job queueing framework built on top of asyncio and redis.

## Install
```
pip install saq
```

## Usage
saq mymodule.settings

## Development
```
python -m venv env
source env/bin/activate
pip install -e .[development,web]
docker run -p 6379:6379 redis
./run_checks.sh
```


