usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
11 years ago
|
from textwrap import dedent
|
||
|
|
||
|
try:
|
||
|
from cachecontrol.caches.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 cachecontrol.caches.redis_cache import RedisCache
|
||
|
except ImportError:
|
||
|
pass
|