File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
import fire
5
5
6
- from stockrec .extract import extract_forecasts , extract_forecast
6
+ from stockrec .extract import extract_forecast
7
7
from stockrec .fetch import get_forecasts
8
8
from stockrec .pgstore import ForecastStorage
9
9
@@ -22,8 +22,8 @@ def today(self, url=None):
22
22
23
23
def range (self , start , stop = datetime .date .today ().isoformat ()):
24
24
"""Scrape forecasts from start date to stop date."""
25
- start_date = datetime .date .fromisoformat (start )
26
- stop_date = datetime .date .fromisoformat (stop )
25
+ start_date = datetime .date .fromisoformat (start [: 10 ] )
26
+ stop_date = datetime .date .fromisoformat (stop [: 10 ] )
27
27
storage_con = ForecastStorage ()
28
28
day_count = (stop_date - start_date ).days + 1
29
29
for date in [start_date + datetime .timedelta (n ) for n in range (day_count )]:
You can’t perform that action at this time.
0 commit comments