You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
from src.console import print_lvl_1, print_lvl_2, print_lvl_3
from src.league import get_leagues_of
from src.player import get_me
from src.statistic import write_to_csv, get_statistic_of_league
class SimpleArgumentParser(Tap):
session: str # Your session ID which is used for every request to music league. You find it in the cookie header. Use double quotes or no quotes at all.
output: str = "statistics.csv" # Specify filename of CSV output.
def main():
args = SimpleArgumentParser(description="Fetches all leagues of user and creates statistics.").parse_args()