langchain_community.utilities.google_finance.GoogleFinanceAPIWrapper

class langchain_community.utilities.google_finance.GoogleFinanceAPIWrapper[source]

基类: BaseModel

Google Finance API的包装器

您可以通过在以下网址注册来创建SerpApi.com密钥:[https://serpapi.com/users/sign_up](https://serpapi.com/users/sign_up)。包装器使用SerpApi.com的Python包:[https://serpapi.com/integrations/python](https://serpapi.com/integrations/python)。要使用,您应该设置环境变量`SERPAPI_API_KEY`为您的API密钥,或将`serp_api_key`作为命名参数传递给构造函数。.. 摘要 ::


from langchain_community.utilities import GoogleFinanceAPIWrapper google_Finance = GoogleFinanceAPIWrapper() google_Finance.run('langchain')

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

如果输入数据不能解析成有效模型,则抛出ValidationError。

参数serp_api_key: Optional[SecretStr] = None
约束
  • 类型 = 字符串

  • 只写 = True

  • 格式 = 密码

参数serp_search_engine : Any = None
run(query: str) str[源代码]

通过Serpapi在Google Finance中运行查询

参数

query (str) –

返回类型

str

使用GoogleFinanceAPIWrapper的示例