feat: init repo

This commit is contained in:
Halyul
2021-05-26 02:24:18 -04:00
commit 45e686e745
34 changed files with 602791 additions and 0 deletions

8
lib/sort_json.py Normal file
View File

@@ -0,0 +1,8 @@
import os
import pathlib
import json
with open(os.path.join(pathlib.Path(__file__).parent.absolute(), "operator", "skadi", "dyn_illust_char_1012_skadi2.json"), "r") as f:
data = json.load(f)
with open(os.path.join(pathlib.Path(__file__).parent.absolute(), "dyn_illust_char_1012_skadi2[sorted].json"), "w") as f:
json.dump(data, f, indent=4, sort_keys=True)