prakashkota commited on
Commit
a6799a9
·
1 Parent(s): b30a615

added a print to check yfinance downloads

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -193,6 +193,9 @@ def predict_stock():
193
  # End Sanitiy Checks"
194
  """
195
 
 
 
 
196
  return summary, prediction_df[["Date", "Actual Close", "Predicted Close", "% Error", "±MAPE Range"]]
197
 
198
 
 
193
  # End Sanitiy Checks"
194
  """
195
 
196
+ # Prints in log and helps to verify any issues with yfinance downloads
197
+ print("Attempting to fetch data from", start_date, "to", today)
198
+
199
  return summary, prediction_df[["Date", "Actual Close", "Predicted Close", "% Error", "±MAPE Range"]]
200
 
201