Skip to content

Commit

Permalink
Merge pull request #95 from lit26/fix/sector-namin
Browse files Browse the repository at this point in the history
Fix naming
  • Loading branch information
lit26 authored Nov 2, 2023
2 parents b72f75f + cad4d8a commit 6df69c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finvizfinance/quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def ticker_fundament(self, raw=True, output_format="dict"):
fundament_info['Company'] = self.soup.find("h2", class_="quote-header_ticker-wrapper_company").text.strip()
quote_links = self.soup.find("div", class_="quote-links")
links = quote_links.find_all("a")
fundament_info["Section"] = links[0].text
fundament_info["Sector"] = links[0].text
fundament_info['Industry'] = links[1].text
fundament_info["Country"] = links[2].text
fundament_info["Exchange"] = links[3].text
Expand Down

0 comments on commit 6df69c0

Please sign in to comment.