Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/develop/python/fastapi/index-fastapi.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down