blob: 20cef6cc5a259e837f8c67afdca80b0de6465dcd (
plain)
1
2
3
4
5
6
7
8
9
|
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)
|