blob: 7c04a71e0bd4f410d078ec0cd2feca015bd24ceb (
plain)
1
2
3
4
5
6
7
8
9
10
|
from redis.client import Redis
def from_url(url, db=None, **kwargs):
"""Returns an active Redis client generated from the given database URL.
Will attempt to extract the database id from the path url fragment, if
none is provided.
"""
return Redis.from_url(url, db, **kwargs)
|