From b26525ea03bf1f4d1b26ee8f8cba446e8992b9c2 Mon Sep 17 00:00:00 2001 From: cheese Date: Sun, 16 Oct 2022 20:46:57 +0900 Subject: [PATCH] fix - fast api tutorial doc --- docs/develop/python/fastapi/index-fastapi.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/develop/python/fastapi/index-fastapi.mdx b/docs/develop/python/fastapi/index-fastapi.mdx index b124e46037..819b7358d9 100644 --- a/docs/develop/python/fastapi/index-fastapi.mdx +++ b/docs/develop/python/fastapi/index-fastapi.mdx @@ -113,9 +113,9 @@ IsBitcoinLit includes a `pyproject.toml` file that Poetry uses to manage the pro Once you have a `pyproject.toml` file, and assuming you already added FastAPI and any other necessary dependencies, you could add aioredis-py to your project like this: - $ poetry add aioredis-py@2.0.0b1 + $ poetry add aioredis@2.0.0 -**NOTE**: This tutorial uses a beta version of aioredis-py 2.0. The 2.0 version of aioredis-py features an API that matches the most popular synchronous Redis client for Python, [redis-py](https://github.com/andymccurdy/redis-py). +**NOTE**: This tutorial uses aioredis-py 2.0. The 2.0 version of aioredis-py features an API that matches the most popular synchronous Redis client for Python, [redis-py](https://github.com/andymccurdy/redis-py). The aioredis-py client is now installed. Time to write some code!