1234567891011121314 |
- __author__ = 'Charles Leifer'
- __license__ = 'MIT'
- __version__ = '1.10.4'
- from huey.api import crontab
- from huey.api import Huey
- try:
- from huey.storage import RedisHuey
- except ImportError:
- class RedisHuey(object):
- def __init__(self, *args, **kwargs):
- raise RuntimeError('Error, "redis" is not installed. Install '
- 'using pip: "pip install redis"')
|