├── .gitignore ├── README.md ├── assets ├── leagues.csv ├── simulation │ ├── Asia AFC Champions League.json │ ├── Asia AFC Cup.json │ ├── China China League One.json │ ├── China Chinese Super League.json │ ├── England Premier League.json │ ├── Europe UEFA Champions League.json │ ├── France Ligue 1.json │ ├── Germany Bundesliga.json │ ├── Hong Kong Hong Kong Premier League.json │ ├── International Asian Cup Qualification.json │ ├── International FIFA Club World Cup.json │ ├── International WC Qualification Asia.json │ ├── Italy Serie A.json │ ├── Japan J1 League.json │ └── Spain La Liga.json └── teams.csv ├── infrastructure ├── development │ ├── main.tf │ └── variables.tf ├── modules │ ├── bigquery │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── event-function │ │ ├── main.tf │ │ └── variables.tf │ ├── project │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── pubsub │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── scheduled-function │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── secret │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── service-accounts │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── services │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ └── storage │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf └── production │ ├── main.tf │ └── variables.tf └── src ├── bigquery ├── schema │ ├── footystats │ │ ├── league_list.json │ │ ├── matches.json │ │ ├── matches_transformed.json │ │ ├── seasons.json │ │ ├── tables.json │ │ └── teams.json │ ├── hkjc │ │ ├── odds.json │ │ ├── results.json │ │ └── teams.json │ ├── manual │ │ ├── leagues.json │ │ └── teams.json │ ├── master │ │ ├── leagues.json │ │ └── teams.json │ ├── simulation │ │ └── leagues.json │ └── solver │ │ ├── leagues.json │ │ └── teams.json └── sql │ ├── footystats │ ├── get_season_id_delta.sql │ └── get_season_id_initial.sql │ ├── functions │ ├── accent_to_latin.sql │ └── matchProbs.js │ ├── hkjc │ ├── odds_clean.sql │ ├── odds_latest.sql │ ├── odds_today.sql │ └── scores.sql │ ├── master │ ├── leagues.sql │ └── teams.sql │ ├── operations │ ├── get_daily_suggestions.sql │ ├── get_kelly_ratio.sql │ ├── map_hkjc_team_list.sql │ ├── map_hkjc_teams.sql │ └── map_hkjc_tournaments.sql │ ├── outputs │ ├── results.sql │ ├── schedule.sql │ ├── simulation_acl2_gs.sql │ ├── simulation_acle_gs.sql │ ├── simulation_acle_ko.sql │ ├── simulation_aco_gs.sql │ ├── simulation_aco_ko.sql │ ├── simulation_acq.sql │ ├── simulation_asc_gs.sql │ ├── simulation_asc_ko.sql │ ├── simulation_bun.sql │ ├── simulation_cl1.sql │ ├── simulation_copa_gs.sql │ ├── simulation_copa_ko.sql │ ├── simulation_csl.sql │ ├── simulation_cwc_gs.sql │ ├── simulation_cwc_ko.sql │ ├── simulation_epl.sql │ ├── simulation_euro_gs.sql │ ├── simulation_euro_ko.sql │ ├── simulation_hkpl.sql │ ├── simulation_j1.sql │ ├── simulation_li1.sql │ ├── simulation_ll.sql │ ├── simulation_sea.sql │ ├── simulation_ucl_gs.sql │ ├── simulation_ucl_ko.sql │ ├── simulation_wcq_r2.sql │ ├── simulation_wcq_r3.sql │ ├── team_ratings_club.sql │ └── team_ratings_international.sql │ ├── simulation │ ├── get_avg_goal_home_adv.sql │ ├── get_groups.sql │ ├── get_matches.sql │ ├── get_messages.sql │ ├── get_teams.sql │ └── leagues_latest.sql │ └── solver │ ├── get_matches.sql │ ├── get_messages.sql │ ├── leagues_latest.sql │ ├── team_ratings.sql │ ├── team_ratings_7d.sql │ ├── teams_7d.sql │ └── teams_latest.sql └── function ├── footystats_get_data ├── gcp │ ├── __init__.py │ ├── logging.py │ ├── storage.py │ └── util.py ├── main.py └── requirements.txt ├── footystats_get_league_list ├── gcp │ ├── __init__.py │ ├── logging.py │ └── storage.py ├── main.py └── requirements.txt ├── footystats_publish_season_ids_delta ├── gcp │ ├── __init__.py │ ├── bigquery.py │ ├── pubsub.py │ └── util.py ├── main.py └── requirements.txt ├── footystats_publish_season_ids_initial ├── gcp │ ├── __init__.py │ ├── bigquery.py │ ├── pubsub.py │ └── util.py ├── main.py └── requirements.txt ├── footystats_transform_matches ├── gcp │ ├── __init__.py │ ├── logging.py │ └── storage.py ├── main.py └── requirements.txt ├── hkjc_get_odds ├── gcp │ ├── __init__.py │ ├── logging.py │ └── storage.py ├── main.py └── requirements.txt ├── hkjc_get_results ├── gcp │ ├── __init__.py │ ├── logging.py │ └── storage.py ├── main.py └── requirements.txt ├── hkjc_get_team_list ├── gcp │ ├── __init__.py │ ├── logging.py │ └── storage.py ├── main.py └── requirements.txt ├── simulate_tournament ├── gcp │ ├── __init__.py │ ├── bigquery.py │ ├── logging.py │ ├── storage.py │ └── util.py ├── main.py ├── requirements.txt └── simulation │ ├── __init__.py │ ├── models │ ├── __init__.py │ ├── match.py │ ├── results.py │ ├── table.py │ ├── team.py │ └── tiebreaker.py │ ├── queries.py │ └── tournaments │ ├── __init__.py │ ├── groups.py │ ├── knockout.py │ ├── rounds.py │ ├── season.py │ ├── tournament.py │ └── winner.py ├── simulation_publish_messages ├── gcp │ ├── __init__.py │ ├── bigquery.py │ ├── pubsub.py │ └── util.py ├── main.py └── requirements.txt ├── solver ├── gcp │ ├── __init__.py │ ├── bigquery.py │ ├── logging.py │ ├── storage.py │ └── util.py ├── main.py ├── requirements.txt └── solver │ ├── __init__.py │ ├── models.py │ ├── queries.py │ └── solver.py └── solver_publish_messages ├── gcp ├── __init__.py ├── bigquery.py ├── pubsub.py └── util.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/README.md -------------------------------------------------------------------------------- /assets/leagues.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/leagues.csv -------------------------------------------------------------------------------- /assets/simulation/Asia AFC Champions League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Asia AFC Champions League.json -------------------------------------------------------------------------------- /assets/simulation/Asia AFC Cup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Asia AFC Cup.json -------------------------------------------------------------------------------- /assets/simulation/China China League One.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/China China League One.json -------------------------------------------------------------------------------- /assets/simulation/China Chinese Super League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/China Chinese Super League.json -------------------------------------------------------------------------------- /assets/simulation/England Premier League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/England Premier League.json -------------------------------------------------------------------------------- /assets/simulation/Europe UEFA Champions League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Europe UEFA Champions League.json -------------------------------------------------------------------------------- /assets/simulation/France Ligue 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/France Ligue 1.json -------------------------------------------------------------------------------- /assets/simulation/Germany Bundesliga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Germany Bundesliga.json -------------------------------------------------------------------------------- /assets/simulation/Hong Kong Hong Kong Premier League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Hong Kong Hong Kong Premier League.json -------------------------------------------------------------------------------- /assets/simulation/International Asian Cup Qualification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/International Asian Cup Qualification.json -------------------------------------------------------------------------------- /assets/simulation/International FIFA Club World Cup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/International FIFA Club World Cup.json -------------------------------------------------------------------------------- /assets/simulation/International WC Qualification Asia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/International WC Qualification Asia.json -------------------------------------------------------------------------------- /assets/simulation/Italy Serie A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Italy Serie A.json -------------------------------------------------------------------------------- /assets/simulation/Japan J1 League.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Japan J1 League.json -------------------------------------------------------------------------------- /assets/simulation/Spain La Liga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/simulation/Spain La Liga.json -------------------------------------------------------------------------------- /assets/teams.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/assets/teams.csv -------------------------------------------------------------------------------- /infrastructure/development/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/development/main.tf -------------------------------------------------------------------------------- /infrastructure/development/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/development/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/bigquery/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/bigquery/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/bigquery/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/bigquery/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/bigquery/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/bigquery/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/event-function/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/event-function/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/event-function/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/event-function/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/project/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/project/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/project/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/project/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/project/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/project/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/pubsub/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/pubsub/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/pubsub/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/pubsub/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/pubsub/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/pubsub/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/scheduled-function/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/scheduled-function/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/scheduled-function/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/scheduled-function/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/scheduled-function/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/scheduled-function/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/secret/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/secret/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/secret/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/secret/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/secret/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/secret/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/service-accounts/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/service-accounts/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/service-accounts/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/service-accounts/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/service-accounts/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/service-accounts/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/services/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/services/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/services/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/services/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/services/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/services/variables.tf -------------------------------------------------------------------------------- /infrastructure/modules/storage/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/storage/main.tf -------------------------------------------------------------------------------- /infrastructure/modules/storage/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/storage/output.tf -------------------------------------------------------------------------------- /infrastructure/modules/storage/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/modules/storage/variables.tf -------------------------------------------------------------------------------- /infrastructure/production/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/production/main.tf -------------------------------------------------------------------------------- /infrastructure/production/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/infrastructure/production/variables.tf -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/league_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/league_list.json -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/matches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/matches.json -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/matches_transformed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/matches_transformed.json -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/seasons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/seasons.json -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/tables.json -------------------------------------------------------------------------------- /src/bigquery/schema/footystats/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/footystats/teams.json -------------------------------------------------------------------------------- /src/bigquery/schema/hkjc/odds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/hkjc/odds.json -------------------------------------------------------------------------------- /src/bigquery/schema/hkjc/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/hkjc/results.json -------------------------------------------------------------------------------- /src/bigquery/schema/hkjc/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/hkjc/teams.json -------------------------------------------------------------------------------- /src/bigquery/schema/manual/leagues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/manual/leagues.json -------------------------------------------------------------------------------- /src/bigquery/schema/manual/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/manual/teams.json -------------------------------------------------------------------------------- /src/bigquery/schema/master/leagues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/master/leagues.json -------------------------------------------------------------------------------- /src/bigquery/schema/master/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/master/teams.json -------------------------------------------------------------------------------- /src/bigquery/schema/simulation/leagues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/simulation/leagues.json -------------------------------------------------------------------------------- /src/bigquery/schema/solver/leagues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/solver/leagues.json -------------------------------------------------------------------------------- /src/bigquery/schema/solver/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/schema/solver/teams.json -------------------------------------------------------------------------------- /src/bigquery/sql/footystats/get_season_id_delta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/footystats/get_season_id_delta.sql -------------------------------------------------------------------------------- /src/bigquery/sql/footystats/get_season_id_initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/footystats/get_season_id_initial.sql -------------------------------------------------------------------------------- /src/bigquery/sql/functions/accent_to_latin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/functions/accent_to_latin.sql -------------------------------------------------------------------------------- /src/bigquery/sql/functions/matchProbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/functions/matchProbs.js -------------------------------------------------------------------------------- /src/bigquery/sql/hkjc/odds_clean.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/hkjc/odds_clean.sql -------------------------------------------------------------------------------- /src/bigquery/sql/hkjc/odds_latest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/hkjc/odds_latest.sql -------------------------------------------------------------------------------- /src/bigquery/sql/hkjc/odds_today.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/hkjc/odds_today.sql -------------------------------------------------------------------------------- /src/bigquery/sql/hkjc/scores.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/hkjc/scores.sql -------------------------------------------------------------------------------- /src/bigquery/sql/master/leagues.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/master/leagues.sql -------------------------------------------------------------------------------- /src/bigquery/sql/master/teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/master/teams.sql -------------------------------------------------------------------------------- /src/bigquery/sql/operations/get_daily_suggestions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/operations/get_daily_suggestions.sql -------------------------------------------------------------------------------- /src/bigquery/sql/operations/get_kelly_ratio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/operations/get_kelly_ratio.sql -------------------------------------------------------------------------------- /src/bigquery/sql/operations/map_hkjc_team_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/operations/map_hkjc_team_list.sql -------------------------------------------------------------------------------- /src/bigquery/sql/operations/map_hkjc_teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/operations/map_hkjc_teams.sql -------------------------------------------------------------------------------- /src/bigquery/sql/operations/map_hkjc_tournaments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/operations/map_hkjc_tournaments.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/results.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/results.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/schedule.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/schedule.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_acl2_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_acl2_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_acle_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_acle_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_acle_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_acle_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_aco_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_aco_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_aco_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_aco_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_acq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_acq.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_asc_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_asc_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_asc_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_asc_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_bun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_bun.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_cl1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_cl1.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_copa_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_copa_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_copa_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_copa_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_csl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_csl.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_cwc_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_cwc_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_cwc_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_cwc_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_epl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_epl.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_euro_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_euro_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_euro_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_euro_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_hkpl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_hkpl.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_j1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_j1.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_li1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_li1.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_ll.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_ll.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_sea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_sea.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_ucl_gs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_ucl_gs.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_ucl_ko.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_ucl_ko.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_wcq_r2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_wcq_r2.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/simulation_wcq_r3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/simulation_wcq_r3.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/team_ratings_club.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/team_ratings_club.sql -------------------------------------------------------------------------------- /src/bigquery/sql/outputs/team_ratings_international.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/outputs/team_ratings_international.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/get_avg_goal_home_adv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/get_avg_goal_home_adv.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/get_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/get_groups.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/get_matches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/get_matches.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/get_messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/get_messages.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/get_teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/get_teams.sql -------------------------------------------------------------------------------- /src/bigquery/sql/simulation/leagues_latest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/simulation/leagues_latest.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/get_matches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/get_matches.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/get_messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/get_messages.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/leagues_latest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/leagues_latest.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/team_ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/team_ratings.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/team_ratings_7d.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/team_ratings_7d.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/teams_7d.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/teams_7d.sql -------------------------------------------------------------------------------- /src/bigquery/sql/solver/teams_latest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/bigquery/sql/solver/teams_latest.sql -------------------------------------------------------------------------------- /src/function/footystats_get_data/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/footystats_get_data/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_data/gcp/logging.py -------------------------------------------------------------------------------- /src/function/footystats_get_data/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_data/gcp/storage.py -------------------------------------------------------------------------------- /src/function/footystats_get_data/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_data/gcp/util.py -------------------------------------------------------------------------------- /src/function/footystats_get_data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_data/main.py -------------------------------------------------------------------------------- /src/function/footystats_get_data/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_data/requirements.txt -------------------------------------------------------------------------------- /src/function/footystats_get_league_list/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/footystats_get_league_list/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_league_list/gcp/logging.py -------------------------------------------------------------------------------- /src/function/footystats_get_league_list/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_league_list/gcp/storage.py -------------------------------------------------------------------------------- /src/function/footystats_get_league_list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_league_list/main.py -------------------------------------------------------------------------------- /src/function/footystats_get_league_list/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_get_league_list/requirements.txt -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_delta/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/gcp/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_delta/gcp/pubsub.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_delta/gcp/util.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_delta/main.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_delta/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_delta/requirements.txt -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_initial/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/gcp/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_initial/gcp/pubsub.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_initial/gcp/util.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_initial/main.py -------------------------------------------------------------------------------- /src/function/footystats_publish_season_ids_initial/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_publish_season_ids_initial/requirements.txt -------------------------------------------------------------------------------- /src/function/footystats_transform_matches/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/footystats_transform_matches/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_transform_matches/gcp/logging.py -------------------------------------------------------------------------------- /src/function/footystats_transform_matches/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_transform_matches/gcp/storage.py -------------------------------------------------------------------------------- /src/function/footystats_transform_matches/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_transform_matches/main.py -------------------------------------------------------------------------------- /src/function/footystats_transform_matches/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/footystats_transform_matches/requirements.txt -------------------------------------------------------------------------------- /src/function/hkjc_get_odds/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/hkjc_get_odds/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_odds/gcp/logging.py -------------------------------------------------------------------------------- /src/function/hkjc_get_odds/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_odds/gcp/storage.py -------------------------------------------------------------------------------- /src/function/hkjc_get_odds/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_odds/main.py -------------------------------------------------------------------------------- /src/function/hkjc_get_odds/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_odds/requirements.txt -------------------------------------------------------------------------------- /src/function/hkjc_get_results/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/hkjc_get_results/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_results/gcp/logging.py -------------------------------------------------------------------------------- /src/function/hkjc_get_results/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_results/gcp/storage.py -------------------------------------------------------------------------------- /src/function/hkjc_get_results/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_results/main.py -------------------------------------------------------------------------------- /src/function/hkjc_get_results/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_results/requirements.txt -------------------------------------------------------------------------------- /src/function/hkjc_get_team_list/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/hkjc_get_team_list/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_team_list/gcp/logging.py -------------------------------------------------------------------------------- /src/function/hkjc_get_team_list/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_team_list/gcp/storage.py -------------------------------------------------------------------------------- /src/function/hkjc_get_team_list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_team_list/main.py -------------------------------------------------------------------------------- /src/function/hkjc_get_team_list/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/hkjc_get_team_list/requirements.txt -------------------------------------------------------------------------------- /src/function/simulate_tournament/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/simulate_tournament/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/gcp/logging.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/gcp/storage.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/gcp/util.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/main.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/requirements.txt -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/__init__.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/match.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/results.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/table.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/team.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/models/tiebreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/models/tiebreaker.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/queries.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/__init__.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/groups.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/knockout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/knockout.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/rounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/rounds.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/season.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/season.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/tournament.py -------------------------------------------------------------------------------- /src/function/simulate_tournament/simulation/tournaments/winner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulate_tournament/simulation/tournaments/winner.py -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulation_publish_messages/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/gcp/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulation_publish_messages/gcp/pubsub.py -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulation_publish_messages/gcp/util.py -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulation_publish_messages/main.py -------------------------------------------------------------------------------- /src/function/simulation_publish_messages/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/simulation_publish_messages/requirements.txt -------------------------------------------------------------------------------- /src/function/solver/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/solver/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/solver/gcp/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/gcp/logging.py -------------------------------------------------------------------------------- /src/function/solver/gcp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/gcp/storage.py -------------------------------------------------------------------------------- /src/function/solver/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/gcp/util.py -------------------------------------------------------------------------------- /src/function/solver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/main.py -------------------------------------------------------------------------------- /src/function/solver/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/requirements.txt -------------------------------------------------------------------------------- /src/function/solver/solver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/solver/solver/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/solver/models.py -------------------------------------------------------------------------------- /src/function/solver/solver/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/solver/queries.py -------------------------------------------------------------------------------- /src/function/solver/solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver/solver/solver.py -------------------------------------------------------------------------------- /src/function/solver_publish_messages/gcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/function/solver_publish_messages/gcp/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver_publish_messages/gcp/bigquery.py -------------------------------------------------------------------------------- /src/function/solver_publish_messages/gcp/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver_publish_messages/gcp/pubsub.py -------------------------------------------------------------------------------- /src/function/solver_publish_messages/gcp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver_publish_messages/gcp/util.py -------------------------------------------------------------------------------- /src/function/solver_publish_messages/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver_publish_messages/main.py -------------------------------------------------------------------------------- /src/function/solver_publish_messages/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjt107/football-prediction/HEAD/src/function/solver_publish_messages/requirements.txt --------------------------------------------------------------------------------