├── .gitignore ├── Examples ├── block_dump.py ├── db_dump.py └── page_dump.py ├── LICENSE ├── MANIFEST.in ├── NotionDump ├── Dump │ ├── __init__.py │ ├── block.py │ ├── database.py │ ├── dump.py │ └── page.py ├── Notion │ ├── Buffer.py │ ├── Notion.py │ └── __init__.py ├── Parser │ ├── __init__.py │ ├── base_parser.py │ ├── block_parser.py │ ├── database_parser.py │ └── mix_parser.py ├── __init__.py └── utils │ ├── __init__.py │ ├── common_op.py │ ├── content_format.py │ └── internal_var.py ├── README.md ├── README_zh.md ├── img ├── get_data.png └── parser_structure.png ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/block_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/Examples/block_dump.py -------------------------------------------------------------------------------- /Examples/db_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/Examples/db_dump.py -------------------------------------------------------------------------------- /Examples/page_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/Examples/page_dump.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NotionDump/Dump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NotionDump/Dump/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Dump/block.py -------------------------------------------------------------------------------- /NotionDump/Dump/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Dump/database.py -------------------------------------------------------------------------------- /NotionDump/Dump/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Dump/dump.py -------------------------------------------------------------------------------- /NotionDump/Dump/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Dump/page.py -------------------------------------------------------------------------------- /NotionDump/Notion/Buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Notion/Buffer.py -------------------------------------------------------------------------------- /NotionDump/Notion/Notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Notion/Notion.py -------------------------------------------------------------------------------- /NotionDump/Notion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NotionDump/Parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NotionDump/Parser/base_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Parser/base_parser.py -------------------------------------------------------------------------------- /NotionDump/Parser/block_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Parser/block_parser.py -------------------------------------------------------------------------------- /NotionDump/Parser/database_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Parser/database_parser.py -------------------------------------------------------------------------------- /NotionDump/Parser/mix_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/Parser/mix_parser.py -------------------------------------------------------------------------------- /NotionDump/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/__init__.py -------------------------------------------------------------------------------- /NotionDump/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NotionDump/utils/common_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/utils/common_op.py -------------------------------------------------------------------------------- /NotionDump/utils/content_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/utils/content_format.py -------------------------------------------------------------------------------- /NotionDump/utils/internal_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/NotionDump/utils/internal_var.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/README_zh.md -------------------------------------------------------------------------------- /img/get_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/img/get_data.png -------------------------------------------------------------------------------- /img/parser_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/img/parser_structure.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wheel~=0.36.2 2 | setuptools~=57.0.0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta1037/notion-export-kernel/HEAD/setup.py --------------------------------------------------------------------------------