summaryrefslogtreecommitdiff
path: root/redis/utils.py
blob: 8e3b124dbf56c96c2e00e625af7bf272f8aa505d (plain)
1
2
3
4
5
6
7
8
9
from .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)