Closed egeres closed 1 year ago
I'm attempting to add an entry into a Notion database, but I'm facing the mentioned error when calling .add_row() in the following code:
.add_row()
from notion.client import NotionClient # ... client = NotionClient(token_v2=token_v2) cv = client.get_collection_view(url) row = cv.collection.add_row()
Looks like this fork fixes the issue and is well maintained! https://github.com/vzhd1701/notion-py
I'm attempting to add an entry into a Notion database, but I'm facing the mentioned error when calling
.add_row()
in the following code: