You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
from blue_forecast import forecast_blue
|
|
|
|
from red_forecast import red_forecast
|
|
|
|
from real_index import update_real_data
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
update_real_data()
|
|
|
|
forecast_blue()
|
|
|
|
red_forecast()
|