comparison planemo/lib/python3.7/site-packages/cachecontrol/caches/__init__.py @ 0:d30785e31577 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:18:57 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d30785e31577
1 from textwrap import dedent
2
3 try:
4 from .file_cache import FileCache
5 except ImportError:
6 notice = dedent('''
7 NOTE: In order to use the FileCache you must have
8 lockfile installed. You can install it via pip:
9 pip install lockfile
10 ''')
11 print(notice)
12
13
14 try:
15 import redis
16 from .redis_cache import RedisCache
17 except ImportError:
18 pass