Coder Social home page Coder Social logo

notiondl's Introduction

NotionDL

Designed to simplify the process of exporting content from Notion. It provides an interface to configure, trigger, and download content exports from Notion. The class supports exporting content in various formats (Markdown, HTML, PDF) and also allows users to choose the scope of the export (current view vs. all content).

Features

  • Export content in Markdown, HTML, or PDF format.
  • Configure the scope of your export: current view or all content.
  • Option to include or exclude files in the export.
  • Flatten the file tree structure upon export.
  • Export multiple pages concurrently for faster processing.
  • Monitor export progress with a progress bar.
  • Automatically unpack zipped export files.

Installation

pip install notiondl

Usage

CLI

python -m notiondl <PAGE_ID> -t <EXPORT_TYPE> --no-file -v

Avaialbe Options

Argument Description
PAGE_ID (required) The ID of the Notion page you want to export. Separate multiple pages with commas.
-d, --export-dir The directory to export the page to. Defaults to the current directory.
-t, --export-type The type of file to export. Defaults to HTML.
-l, --no-file Do not export files attached to the page. Defaults to False.
-k, -keep-structure Keep the page hierarchy when exporting. Defaults to False.
-s, --single-page Do not export child pages. Defaults to False.
-w, --rewrite Do not create date-formated folders for each export. Defaults to False.
-v, --verbose Whether to print verbose output. Defaults to False.
-c, --current-view The type of view to export. Defaults to the currentView.
You can set whether NOTION_TOKEN_V2 and NOTION_FILE_TOKEN environment variables or providing these as CLI arguments.
--token-v2 The token_v2 cookie value from your Notion session.
--file-token The file-token cookie value from your Notion session.

Python

import notiondl

exporter = notiondl.NotionExporter(
    token_v2="<TOKEN>",
    file_token="<FILE_TOKEN>",
    pages={"index.html": "<PAGE_ID>"},
    export_directory="test",
    flatten_export_file_tree=True,
    export_type=notiondl.ExportType.HTML,
    current_view_export_type=notiondl.ViewExportType.CURRENT_VIEW,
    include_files=True,
    recursive=True,
    rewrite=True,
)
exporter.export()

Requirements

In case of CLI, you have to set NOTION_TOKEN_V2 and NOTION_FILE_TOKEN environment variables. You will need to get the token_v2 and file_token values from your Notion cookies. The pages dictionary should contain pairs of page_name: page_id for each page you want to export. page_name can be anything and would be used for the final downloaded file name.

Needed Cookies

To export anything from Notion, one needs to authenticate oneself with some Cookies (like a browser would). These cookies are called token_v2 and file_token. They are set on all requests of a logged in user when using the Notion web-app.

How to retrieve the Cookies?

  • Go to notion.so.
  • Log in with your account.
  • Open the developer tools of your browser, open Application > Storage > Cookies (Chrome); Storage tab (Firefox).
  • Copy the value of the Cookies called token_v2 and file_token and paste them somewhere safe.
  • โš ๏ธ If you don't find file_token, you need to have at least had exported a file manually once.
  • Those cookies have a 1 year validity, so you don't need to do this often.

License

MIT

Acknowledgement

https://github.com/Strvm/python-notion-exporter

notiondl's People

Contributors

moehmeni avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.