Rename merge, add build_month.py

This commit is contained in:
Watchful1 2023-09-19 21:26:36 -07:00
parent 2f3c3c8f88
commit aa4cc85334
5 changed files with 347 additions and 1 deletions

View file

@ -44,6 +44,7 @@ def read_obj_zst_meta(file_name):
lines = (buffer + chunk).split("\n")
for line in lines[:-1]:
line = line.strip()
try:
json_object = json.loads(line)
except (KeyError, json.JSONDecodeError) as err: