You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the finviz distribution from pypi, I noticed that the first row of screener results appears to be dropped. Before jumping in with a pull request, wanted to check if anyone else was having this issue.
I think I have spotted the potential issue, at line 30 of helper_functions/scraper_functions.py the enumerate call should start at 0 if you look at the finviz page source.
ifrows!=-2:
forrow_number, row_datainenumerate(all_rows, 1):
data_sets.append(dict(zip(headers, row_data)))
ifrow_number==rows: # If we have reached the required endbreak
If anyone else is having this issue, I'll put in the pull request.
The text was updated successfully, but these errors were encountered:
When running the finviz distribution from pypi, I noticed that the first row of screener results appears to be dropped. Before jumping in with a pull request, wanted to check if anyone else was having this issue.
I think I have spotted the potential issue, at line 30 of
helper_functions/scraper_functions.py
theenumerate
call should start at 0 if you look at the finviz page source.If anyone else is having this issue, I'll put in the pull request.
The text was updated successfully, but these errors were encountered: