Esempio n. 1
0
def main():
    #**** Choose year   ******
    for year in range(2021, 2022):

        #**** Choose Sport  ******
        league = "Football"
        league = "Boys Basketball"
        # league = "Girls Basketball"

        #**** Create Instance *****
        season = Season(league, year)

        #Check if year path exists
        if not os.path.exists(season.get_year_path()):
            os.makedirs(season.get_year_path())

        #**** Write HTML to File
        write_HTML(season)

        #**** Create Game Infos
        create_game_infos(season)

        print("Year: ", year)