Skip to main content

Abstraction layer for the Notion API with declarative schema mapping

Project description

notion-api-utils

Abstraction layer for the Notion API. Define schemas declaratively and convert Python dicts to Notion's JSON format without writing boilerplate.

Install

pip install notion-api-utils

Usage

from notion_api_utils import Schema, Field, Title, RichText, Number, Select, Date, to_notion_properties

# Define a schema mapping your data to Notion properties
schema = Schema(fields={
    "name":   Field("Name", Title),
    "email":  Field("Email", Email),
    "age":    Field("Age", Number),
    "status": Field("Status", Select),
    "date":   Field("Created At", Date),
})

# Your data
data = {
    "name": "Lucas",
    "email": "lucas@example.com",
    "age": 25,
    "status": "Active",
    "date": "2026-03-25",
}

# Convert to Notion properties JSON
properties = to_notion_properties(data, schema)
# Use `properties` in your Notion API call body

Output:

{
  "Name": {"title": [{"text": {"content": "Lucas"}}]},
  "Email": {"email": "lucas@example.com"},
  "Age": {"number": 25},
  "Status": {"select": {"name": "Active"}},
  "Created At": {"date": {"start": "2026-03-25"}}
}

Supported Property Types

Type Input
Title str
RichText str
Number int | float
Select str
MultiSelect list[str]
Date str | date | datetime or {"start": ..., "end": ...}
Checkbox bool
Email str
Url str
PhoneNumber str
Status str
Relation list[str] (page IDs)
People list[str] (user IDs)
Files list[str] (URLs)

Custom Source Key

When your dict key differs from the schema key:

schema = Schema(fields={
    "nome": Field("Name", Title, source_key="nome_completo"),
})

data = {"nome_completo": "Lucas"}
properties = to_notion_properties(data, schema)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iaxys_notion_utils-0.2.3.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iaxys_notion_utils-0.2.3-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file iaxys_notion_utils-0.2.3.tar.gz.

File metadata

  • Download URL: iaxys_notion_utils-0.2.3.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iaxys_notion_utils-0.2.3.tar.gz
Algorithm Hash digest
SHA256 ec6c7e8a38ceeae0f94f0baa3ec1188d184cfe077357b25ee3cc3300966cae1a
MD5 301212d5ec0c46b743b52fded86be893
BLAKE2b-256 7cbf4d36d4084281092408c029bb268d335ec2684940fd72df26aa70e62f4054

See more details on using hashes here.

File details

Details for the file iaxys_notion_utils-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: iaxys_notion_utils-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iaxys_notion_utils-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6c1f9ef1d9c2f09febd5ba75ba000f389b6c874fc65fbd8bf7541a55ed8371c1
MD5 7b93bbc56515bb6dd67577b4703b8bf0
BLAKE2b-256 e3836b11a4c4c053b9b2df371a939bd1e318df5fdf75ffb28cab5c945838fb2f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page