Welcome to aiogifs’s documentation!

Indices and tables

Getting Started

Lets take a look at some basic examples with the Tenor Client first:

from aiogifs.tenor import TenorClient

client = TenorClient(api_key = "TENOR_API_KEY")
resp = await client.search("cats")
first_media = resp[0]
print(first_media.url)