Coverage for notion_client/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.0, created at 2024-07-13 22:22 +0000

1"""Package notion-sdk-py. 

2 

3A sync + async python client for the official Notion API. 

4Connect Notion pages and databases to the tools you use every day, 

5creating powerful workflows. 

6For more information visit https://github.com/ramnes/notion-sdk-py. 

7""" 

8 

9from .client import AsyncClient, Client 

10from .errors import APIErrorCode, APIResponseError 

11 

12__all__ = ["AsyncClient", "Client", "APIErrorCode", "APIResponseError"]