mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-27 12:00:32 +08:00
13 lines
283 B
Python
13 lines
283 B
Python
import json
|
|
|
|
|
|
def load(filename):
|
|
with open(filename, "r", encoding="utf-8") as f:
|
|
return json.load(f)
|
|
|
|
|
|
def save(filename, obj):
|
|
with open(filename, "w", encoding="utf8") as f:
|
|
json.dump(obj, f, indent=4, separators=(",", ": "), ensure_ascii=False)
|
|
pass
|