This library allows developers to call Notion API using custom DSL Pydantic-validated classes and API methods
Project description
notion-apilib-python
This library allows developers to work with Notion API using custom DSL Pydantic models, removing the need to manually construct json payloads and API requests or handle JSON responses. The library wraps the Notion REST API, transforming the calls into intuitive custom API methods that accept and return custom Pydantic objects. Also provides factory methods for easy instantiation of these custom objects.
Key Features
- Schema Enforcement: Ensures data integrity by validating all objects against Notion's API schema using Pydantic.
- Factory Methods: Simplifies the creation of Notion objects with pre-configured factory methods.
- Provide a high-level abstraction over Notion's REST API. Abstracting away the low-level details of the API like json structure, formats and URL's.
- Simple and intuitive syntax for creating, retrieving, updating, and deleting Notion objects like Pages, Databases and Blocks.
- Supports pagination, filtering, sorting, and other advanced features.
Installation
You can install the package via pip, link to the package - PyPi Package
pip install notion-apilib
Usage
from notion_apilib import NotionApi
# Initialize the client
client = NotionApi(api_key="your_notion_integration_secret_api_key")
# Access the notion object providers / accessors:
page_provider = client.page_provider
blocks_provider = client.block_provider
database_provider = client.database_provider
# Example usage
database = database_provider.retrieve_database("your_database_id")
page = page_provider.retrieve_page("your_page_id")
Documentation
Modules
notion-apilib:
- Contains the core NotionApi class used for accessing the pages, database and blocks providers used for interacting with Notion API.
notion-apilib.data:
- Contains inside Pydantic models and factory methods for Notion objects like Page, Database, Block, Properties, etc.
notion-apilib.data.blocks:
- Pydantic models and factory methods for blocks.
notion-apilib.data.properties:
- Pydantic models and factory methods for page and database properties as well as Filter and Sort objects.
notion-apilib.data.structures:
- Pydantic models and factory methods for low-level structures like RichText and Annotations used by other objects.
External:
Contributing
This is my first library, and I know it might not be perfect. I welcome any suggestions, code reviews, documentation improvements, bug reports or feature requests. Please feel free to contribute to the project.
How to Contribute
- Fork the repository.
- Create a new branch (git checkout -b feature-branch).
- Make your changes and commit them (git commit -am 'Add new feature').
- Push the branch (git push origin feature-branch).
- Open a Pull Request.
For major changes, please open an issue first to discuss what you would like to change.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Feedback
As this is my first library, any constructive criticism or feedback is greatly appreciated. Whether it's a suggestion for improvement or just a comment on how the library could be better, I'm eager to hear your thoughts. Please don't hesitate to reach out if you have any ideas, feedback, or feature requests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file notion_apilib-0.0.1a0.tar.gz
.
File metadata
- Download URL: notion_apilib-0.0.1a0.tar.gz
- Upload date:
- Size: 63.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-40-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae6273fe63186166ab5820f898e0a2f2a927744f5bbf795b876f9b6184bba256 |
|
MD5 | 58994850052ed8fb8256c8125c4c0c18 |
|
BLAKE2b-256 | c7d8c575d537f6266d30eb4b5ad24a89049ab413f4491c683e2e781e9f42155b |
File details
Details for the file notion_apilib-0.0.1a0-py3-none-any.whl
.
File metadata
- Download URL: notion_apilib-0.0.1a0-py3-none-any.whl
- Upload date:
- Size: 107.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-40-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5744aa8e7f61d070c7d630b91e973b40da8f24a9d1f731bd196d0762fc47462 |
|
MD5 | 179a2f52ae5105bdc10677c7e00646fb |
|
BLAKE2b-256 | c6dd91307c68da4ade2300ab3373d674704ef850879acf9507babdb8d71e56e8 |