Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 462 Bytes

index.rst

File metadata and controls

32 lines (20 loc) · 462 Bytes

Redtrio

Redtrio is an async (Trio) client supporting Redis 6+, using the RESP3 protocol.

Installation

To install redtrio, run this command in your terminal:

$ pip install redtrio

Usage

Redtrio's usage looks like:

>>>from redtrio.lowlevel import RedisClient
>>>client = RedisClient()
>>>await client.call(b"PING")
b"PONG"