Skip to content

Using asyncio for notion.pages.create requests #206

Answered by ramnes
JonathanBonnaud asked this question in Q&A
Discussion options

You must be logged in to vote

Hey there!

Yes, all methods are available as coroutines when you use AsyncClient, as written in the README. :)

For example:

import asyncio
import os
from pprint import pprint

from notion_client import AsyncClient


async def main():
    notion = AsyncClient(auth=os.environ["NOTION_TOKEN"])
    users = await notion.users.list()
    pprint(users)


asyncio.run(main())

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by JonathanBonnaud
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #205 on September 13, 2023 08:45.