Better readme + download fandom page by default

This commit is contained in:
Hashblen 2023-12-31 18:38:09 +01:00
parent 6768bd748f
commit 732f382d7b
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ def parse_page(page_text):
def main():
page = load_page_static()
page = load_page()
banners = parse_page(page)
with open('banner_history.json', 'w') as f:
json.dump(banners, f, indent=4)

View File

@ -125,7 +125,7 @@ def fill_history(wb: Workbook, banners: list[dict], wish_history: list[dict]):
entry.append(roll_count[banner['name']])
# Group
entry.append(roll_count[banner['name']]) # IDK what this is
entry.append(roll_count[banner['name']]) # Example: if 10-pull, they all belong to one group. Resets for each banner.
# Banner
entry.append(banner['name'])