Last active
March 16, 2021 07:17
-
-
Save rszeto/e3cf57638a274925a0a9ea1e40160144 to your computer and use it in GitHub Desktop.
Roughly converts Keep data from Google Takeout to Notion workspace manager. Some things can't be automated, like setting the Notion title or importing attachments. Notes with attachments are denoted with "***" and must be edited manually.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import os | |
from pprint import pprint | |
KEEP_PATH = 'takeout-20200709T114934Z-001\\Takeout\\Keep' | |
NOTION_PATH = 'notion_export' | |
def main(): | |
if not os.path.isdir(NOTION_PATH): | |
os.makedirs(NOTION_PATH) | |
for file_name in os.listdir(KEEP_PATH): | |
_, ext = os.path.splitext(file_name) | |
if ext != '.json': | |
continue | |
print(f'Processing {file_name}...') | |
with open(os.path.join(KEEP_PATH, file_name), encoding='utf-8') as f: | |
json_obj = json.load(f) | |
title = json_obj['title'] | |
if 'attachments' in json_obj: | |
title = f'*** {title}' | |
time = json_obj['userEditedTimestampUsec'] | |
output_path = os.path.join(NOTION_PATH, f'{time}.md') | |
f = open(output_path, 'w', encoding='utf-8') | |
f.write(f'# {title}\n\n') | |
if 'attachments' in json_obj: | |
attachments = json_obj['attachments'] | |
for item in attachments: | |
item_path = item['filePath'] | |
f.write(f'*** {item_path}\n\n') | |
if 'listContent' in json_obj: | |
content = json_obj['listContent'] | |
for item in content: | |
text = item['text'] | |
is_checked = item['isChecked'] | |
checked_char = 'x' if is_checked else ' ' | |
f.write(f'- [{checked_char}] {text}\n') | |
else: | |
content = json_obj['textContent'] | |
f.write(content.replace('\n', '\n\n')) | |
f.close() | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sorry, can u provide better documentation for this python project?