🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

notion-tree

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notion-tree

0.0.1a4
Source
PyPI
Maintainers
1

notion-tree

Hierarchic operations with Notion API, thanks to notion-py.

Requirements

Installation

# Required as PyPI does not accept package with dependency links
$ pip install git+https://github.com/aureplop/notion-py.git@feat-import-file#egg=notion-999
$ pip install notion-tree

Usage

# Obtain the `token_v2` value by inspecting your browser cookies on a logged-in session on Notion.so
$ NOTION_TOKEN=...
$ python -m notiontree.hierarchy --dir path/to/local/root --root-parent-url https://www.notion.so/id/to/parent/of/local/root

Assuming you had this hierarchy on Notion:

workspace
└── parent-root  # URL: https://www.notion.so/id/to/parent/of/local/root

And that you have this local structure:

path/to/local
└── root
    ├── index.md
    ├── dir1
    │   ├── index.md
    │   └── page1.md
    └── dir2
        └── page2.md

After running the command above, you will get this structure on your Notion workspace:

workspace
└── parent-root           # URL: https://www.notion.so/id/to/parent/of/local/root
    └── root              # Includes links to dir1 and dir2 + content of root/index.md
        ├── dir1          # Includes links to dir1/page1.md + content of root/dir1/index.md
        │   └── page1.md
        └── dir2          # Includes links to dir2/page2.md
            └── page2.md

Todos

  • Split 'notiontree/hierarchy.py' to multiple modules.
  • Use 'click' for CLI.
  • Document --github-wiki-root in README.
  • Create stub pages in another page than 'root' to be able to import root index.html w/o removing other stub pages.
  • Accept other filenames for index files (currently limited to 'index.md').
  • Improve link resolver configuration.

Keywords

notion structure hierarchy export import sync

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts