Пример #1
0
def main():
    #configFile = json.load(open('../config/soccer_data_config.json', 'r'))
    configFile = json.load(open('../config/config.json', 'r'))
    if not configFile:
        click.secho("Could not find configFile", fg="red", bold=True)
        exit(-1)
    
    apikey = configFile['apiToken']
    print("API Token found.")
    print(apikey)
    headers = {'X-Auth-Token': apikey}
    print("Fetching today's date ...")
    
    today = date.today()
    print("Today is: {}".format(today.strftime("%Y-%m-%d")))
    try:
        print("Instatiating request handler")
        rh = RequestHandler(headers)
        print("Instatiating json Writer and reader")
        js = JSonWR('../data/init')
        jsJOB = JSonWR('../data/updates')
        
        for competition in configFile['competitions']:
            print("Trying to fetch information on {}".format(competition['Name']))
            league = rh.get_league(competition['ID'])
            if not league:
                click.secho("League: {} with ID: {} NOT FOUND".format(competition['Name'], competition['ID']), fg="red", bold=True)
                continue

            js.save_json(league, ['league', str(league['id'])] )
            jsJOB.save_json(league, ['league', str(league['id'])])

            seasons = league['seasons'][:competition['seasons']]
            for season in seasons:
                teams = None
                if not os.path.isfile('../data/init/league_{}_season_{}_matches.json'.format(league['id'], season['startDate'][:4])):
                    teams = rh.get_teams_in_league(league, season = season)
                
                if teams:
                    print("Teams fetched for Season {}".format(teams['season']['startDate']))
                    js.save_json(teams, ['league', 
                                        str(league['id']), 
                                        'season', 
                                        season['startDate'][:4],
                                        'teams'] )
                else:
                    click.secho("NO NEW Teams for this league in this season: {}".format(competition['Name']), fg="red", bold=True) 

                matches = None
                if not os.path.isfile('../data/init/league_{}_season_{}_matches.json'.format(league['id'], season['startDate'][:4])):
                    matches = rh.get_league_scores(league, season = season, matchFilter = competition['matchFilter'])
                
                if matches:
                    print("Matches fetched: {} {}".format(len(matches['matches']), matches['count']))
                    js.save_json(matches, ['league', 
                                            str(league['id']), 
                                            'season', 
                                            season['startDate'][:4],
                                            'matches'] )   
                else:
                    click.secho("NO NEW matches for this season", fg="red", bold=True)             
                             
        
    except IncorrectParametersException as e:
        click.secho(str(e), fg="red", bold=True)
Пример #2
0
def main():
    tree_printer('..')
    configFile = json.load(open('../config/soccer_data_config.json', 'r'))
    if not configFile:
        click.secho("Could not find configFile", fg="red", bold=True)
        exit(-1)

    apikey = configFile['apiToken']
    print("API Token found.")
    print(apikey)
    headers = {'X-Auth-Token': apikey}
    print("Fetching today's date ...")

    today = date.today()
    print("Today is: {}".format(today.strftime("%Y-%m-%d")))
    try:
        print("Instatiating request handler")
        #NEED TO MAKE IT A THREAD
        rh = RequestHandler(headers)
        print("Instatiating json Writer and reader")
        js = JSonWR('../data/updates')

        for competition in configFile['competitions']:
            print("Trying to fetch information on {}".format(
                competition['Name']))
            league = rh.get_league(competition['ID'])
            if not league:
                click.secho("League: {} with ID: {} NOT FOUND".format(
                    competition['Name'], competition['ID']),
                            fg="red",
                            bold=True)
                break

            season = league['seasons'][0]
            new_season = False
            last_season_updated = js.open_json(['league',
                                                str(league['id'])
                                                ])['seasons'][0]
            if season != last_season_updated:
                new_season = True

            update_matches = rh.get_league_scores(
                league,
                matchFilter=competition['matchFilter'],
                dateFrom=(today - timedelta(days=1)),
                dateTo=datetime.strptime(season['endDate'], '%Y-%m-%d'))

            if new_season:
                update_teams = rh.get_teams_in_league(league, season=season)
                if update_teams:
                    print(
                        "New Season update available, teams fetched: ".format(
                            len(update_teams['teams'])))
                    js.save_json(update_teams, [
                        'league',
                        str(league['id']), 'season', season['startDate'][:4],
                        'updated_teams'
                    ])
            if update_matches:
                print("New Matches fetched: {}".format(
                    len(update_matches['matches'])))
                js.save_json(update_matches, [
                    'league',
                    str(league['id']), 'season', season['startDate'][:4],
                    'updated_matches',
                    today.strftime("%Y_%m_%d")
                ])
                js.save_json(league, ['league', str(league['id'])])
            else:
                click.secho("NO new matches for this week",
                            fg="red",
                            bold=True)

    except IncorrectParametersException as e:
        click.secho(str(e), fg="red", bold=True)