From 641e55aa83a8a08cbdb6127a55eafd7b955a09fc Mon Sep 17 00:00:00 2001 From: AllinolCP <56921534+AllinolCP@users.noreply.github.com> Date: Wed, 2 Nov 2022 16:58:11 +0700 Subject: [PATCH] AIORedis now integrated in Redis-py --- houdini/houdini.py | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/houdini/houdini.py b/houdini/houdini.py index ef9ebf3..46182a5 100644 --- a/houdini/houdini.py +++ b/houdini/houdini.py @@ -4,7 +4,7 @@ import os import sys from logging.handlers import RotatingFileHandler -import aioredis +from redis import asyncio as aioredis from cacheout import Cache from houdini import PenguinStringCompiler diff --git a/requirements.txt b/requirements.txt index aee65e3..dfdf24e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ asyncio -aioredis +redis cacheout gino ujson