comparison env/lib/python3.9/site-packages/cachecontrol/caches/__init__.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
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