diff --git a/daily_scraper.py b/daily_scraper.py index be3c6c7..e975637 100644 --- a/daily_scraper.py +++ b/daily_scraper.py @@ -58,7 +58,7 @@ df = thread_scrape.thread_scrape() # Append the data to the all_data DataFrame - all_data = all_data.append(df, ignore_index=True) + all_data = pd.concat([all_data, df], ignore_index=True) # Move to the next day current_date += datetime.timedelta(days=1)