Skip to main content

Notion API Database Python Implementation

Reason this release was yanked:

Stable version 1.0.0 has been released. Install that version only if migration is not possible.

Project description

Python Notion Database

Notion API Database Python Implementation

created only by database from the official Notion API.

What's new

Installing / Getting started

pip install notion-database

List Database

from notion_database.database import Database

D = Database(integrations_token=NOTION_KEY)
D.list_databases(page_size=100)

Retrieve Database

from notion_database.database import Database

D = Database(integrations_token=NOTION_KEY)
D.retrieve_database(database_id=database_id)

Properties

from notion_database.properties import Properties

PROPERTY = Properties()
PROPERTY.set_title("name", "title")
PROPERTY.set_rich_text("description", "notion-datebase")
PROPERTY.set_number("number", 1)
PROPERTY.set_select("select", "test1")
PROPERTY.set_multi_select("multi_select", ["test1", "test2"])
PROPERTY.set_checkbox("checkbox", True)
PROPERTY.set_url("url", "www.google.com")
PROPERTY.set_email("email", "test@test.com")
PROPERTY.set_phone_number("phone", "010-0000-0000")

Children

from notion_database.properties import Children

children = Children()
children.set_body("hello world!")

Create Page

from notion_database.page import Page

P = Page(integrations_token=NOTION_KEY)
P.create_page(database_id=database_id, properties=PROPERTY, children=children)
page_id = P.result["id"]

Retrieve Page

from notion_database.page import Page

P = Page(integrations_token=NOTION_KEY)
P.retrieve_page(page_id=page_id)

Update Page

from notion_database.page import Page

P = Page(integrations_token=NOTION_KEY)
P.update_page(page_id=page_id, properties=PROPERTY)

Clear Properties

from notion_database.properties import Properties

PROPERTY = Properties()
PROPERTY.clear()

Archive Page

from notion_database.page import Page

P = Page(integrations_token=NOTION_KEY)
P.archive_page(page_id=page_id, archived=True)

Building / Developing

python setup.py install

Features

  • list database

  • Retrieve database

  • Create Page object (the database item)

  • update Page object

  • Retrieve Page object

  • Archive Page

Todo

  • query database

Contributing

If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.

Links

Licensing

The code in this project is licensed under GPL license.

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

notion-database-20210513.5.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

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

notion_database-20210513.5-py3-none-any.whl (17.2 kB view details)

Uploaded Python 3

File details

Details for the file notion-database-20210513.5.tar.gz.

File metadata

  • Download URL: notion-database-20210513.5.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.2

File hashes

Hashes for notion-database-20210513.5.tar.gz
Algorithm Hash digest
SHA256 010cd91fcac52d8d4f7c6d80b78b0717bc9831948fd627c60bba7b3b72d72a43
MD5 1ac295a81605000e999f7459259caf99
BLAKE2b-256 209cae51c6cd53d3c3622aa21d9024a5a13d0498e8c3156a2886311634771fc5

See more details on using hashes here.

File details

Details for the file notion_database-20210513.5-py3-none-any.whl.

File metadata

  • Download URL: notion_database-20210513.5-py3-none-any.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.2

File hashes

Hashes for notion_database-20210513.5-py3-none-any.whl
Algorithm Hash digest
SHA256 36c7e3654227ce9a1e6f063da3d68fa63223f3af28dfa48f586dff363ce33866
MD5 1324818cfa702772771964cab1a018fd
BLAKE2b-256 dd4aade3b13aba5595f567779cc69f0b3e421a08c934f788f759ccd53d307e37

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