mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-04 10:23:37 +00:00
05410e2aa0
Replaced urllib2 with requests for both TVDB and TVRage. Updated cache cleanup code to process both TVDB and TVRage cache folders.
18 lines
407 B
Python
18 lines
407 B
Python
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
|