8 lines
166 B
Python
8 lines
166 B
Python
|
# Other library imports
|
||
|
from redis import StrictRedis
|
||
|
|
||
|
# Project imports
|
||
|
from settings import settings
|
||
|
|
||
|
r = StrictRedis(unix_socket_path=settings.redis_socket, db=0)
|