Beispiel #1
0
def gather_odds_by_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        gather_odds_by_date(day)
Beispiel #2
0
def load_odds_by_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        load_odds_by_date(day)
Beispiel #3
0
def gather_csv_projections_for_month(year, month, session=None):
    if not session:
        session = _get_roto_session()
    for date in helpers.iso_dates_in_month(year, month):
        gather_csv_projections_on_date(date, session=session)
def load_projections_for_month(year, month):
    logger.info(f'Loading DFN projections for {month}, {year}')
    for date in helpers.iso_dates_in_month(year, month):
        load_projections_for_date(date)
Beispiel #5
0
def load_salaries_for_month(year, month):
    for date in helpers.iso_dates_in_month(year, month):
        load_salaries_on_date(date)
Beispiel #6
0
def load_json_projections_for_month(year, month):
    for date in helpers.iso_dates_in_month(year, month):
        load_json_projections_on_date(date)
def gather_box_scores_for_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        gather_box_scores_by_date(day)
Beispiel #8
0
 def load_salaries_positions_for_month(self, year, month):
     for date in helpers.iso_dates_in_month(year, month):
         self.load_salaries_positions_for_date(date)
def scrape_box_scores_for_month(year, month):
    for date in helpers.iso_dates_in_month(year, month):
        scrape_box_scores_by_date(date)
def load_stat_lines_for_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        load_stat_lines_on_date(day)
Beispiel #11
0
def scrape_salary_changes_for_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        scrape_salary_changes_by_date(day)
Beispiel #12
0
def gather_salary_changes_for_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        gather_salary_changes_by_date(day)
Beispiel #13
0
def load_players_in_month(year, month):
    for day in helpers.iso_dates_in_month(year, month):
        load_players_on_date(day)
Beispiel #14
0
def load_past_results_for_month(year, month):
    for date in helpers.iso_dates_in_month(year, month):
        load_past_results_on_date(date)
Beispiel #15
0
def gather_past_results_for_month(year, month):
    for date in helpers.iso_dates_in_month(year, month):
        gather_past_results_on_date(date)