langchain_community.utilities.alpha_vantage.AlphaVantageAPIWrapper

class langchain_community.utilities.alpha_vantage.AlphaVantageAPIWrapper[source]

Bases: BaseModel

货币汇率交换的AlphaVantage API包装器。

使用说明

  1. 前往AlphaVantage并注册API密钥

  2. 将您的API密钥保存到ALPHAVANTAGE_API_KEY环境变量中

通过解析和验证来自关键字参数的输入数据来创建一个新的模型。

如果输入数据无法解析为有效的模型,则引发ValidationError。

参数 alphavantage_api_key: Optional[str] = None
run(from_currency: str, to_currency: str) str[source]

获取指定货币对的当前汇率。

参数
  • from_currency (str) –

  • to_currency (str) –

返回类型

str

search_symbols(keywords: str) Dict[str, Any][source]

向AlphaVantage API发送请求以搜索符号。

参数

keywords (str) –

返回类型

Dict[str, Any]

属性 standard_currencies

使用AlphaVantageAPIWrapper的示例