mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
cd926ac3dd
**Description:** In this PR, I am adding a `PolygonFinancials` tool, which can be used to get financials data for a given ticker. The financials data is the fundamental data that is found in income statements, balance sheets, and cash flow statements of public US companies. **Twitter**: [@virattt](https://twitter.com/virattt)
12 lines
339 B
Python
12 lines
339 B
Python
"""Polygon IO tools."""
|
|
|
|
from langchain_community.tools.polygon.financials import PolygonFinancials
|
|
from langchain_community.tools.polygon.last_quote import PolygonLastQuote
|
|
from langchain_community.tools.polygon.ticker_news import PolygonTickerNews
|
|
|
|
__all__ = [
|
|
"PolygonFinancials",
|
|
"PolygonLastQuote",
|
|
"PolygonTickerNews",
|
|
]
|