.. | |||||
__init__.py | |||||
__init__.pyc | |||||
__init__.pyo | |||||
file_cache.py | |||||
file_cache.pyc | |||||
file_cache.pyo | |||||
redis_cache.py | |||||
redis_cache.pyc | |||||
redis_cache.pyo |
from textwrap import dedent try: from .file_cache import FileCache except ImportError: notice = dedent(''' NOTE: In order to use the FileCache you must have lockfile installed. You can install it via pip: pip install lockfile ''') print(notice) try: import redis from .redis_cache import RedisCache except ImportError: pass
.. | |||||
__init__.py | |||||
__init__.pyc | |||||
__init__.pyo | |||||
file_cache.py | |||||
file_cache.pyc | |||||
file_cache.pyo | |||||
redis_cache.py | |||||
redis_cache.pyc | |||||
redis_cache.pyo |