Created
January 4, 2021 11:43
-
-
Save mura303/b8b5d5c562ee26111323d8ff3b348664 to your computer and use it in GitHub Desktop.
scrapboxのExportJSONをテキスト化
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 | |
j = json.load(open("hoge.json","r")) | |
for page in j['pages']: | |
for line in page['lines']: | |
print(line) | |
print("---") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment