You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add a block to the 'To Do' column on my notion board in Notion Py. Currently, I have this.
page = self.client.get_block('https://www.notion.so/xyz') # this links to the default 'task list' page, as I can see when viewing 'page.title'
newchild = page.children.add_new(TodoBlock, title="Something to get done", status='To Do')
Can't figure out how to actually add the child block under the To Do list. What this yields is the block listing when I run
for child in page.children:
print(child)
But not seen anywhere on my Notion in my browser.
Any help with this would be greatly appreciated, not finding much online in regards to this specifically.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to add a block to the 'To Do' column on my notion board in Notion Py. Currently, I have this.
Can't figure out how to actually add the child block under the To Do list. What this yields is the block listing when I run
But not seen anywhere on my Notion in my browser.
Any help with this would be greatly appreciated, not finding much online in regards to this specifically.
Beta Was this translation helpful? Give feedback.
All reactions