Skip to content

Commit

Permalink
Fix get_insider cssselect (mariostoev#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaslek authored May 21, 2023
1 parent ba6c092 commit ac00fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finviz/main_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_insider(ticker):

get_page(ticker)
page_parsed = STOCK_PAGE[ticker]
outer_table = page_parsed.cssselect('table[class="body-table"]')
outer_table = page_parsed.cssselect('table[class="body-table insider-trading-table"]')

if len(outer_table) == 0:
return []
Expand Down

0 comments on commit ac00fcf

Please sign in to comment.