langchain_community.document_loaders.weather.WeatherDataLoader

class langchain_community.document_loaders.weather.WeatherDataLoader(client: OpenWeatherMapAPIWrapper, places: Sequence[str])[source]

使用 Open Weather Map API 加载天气数据。

通过 OpenWeatherMap 的免费 API 读取任何位置的预报和当前天气。有关如何生成免费 OpenWeatherMap API 的详细信息,请访问‘https://openweathermap.org/appid’。

使用参数初始化。

方法

__init__(client, places)

使用参数初始化。

alazy_load()

文档的懒加载器。

aload()

将数据加载到文档对象中。

from_params(places, *[, openweathermap_api_key])

lazy_load()

懒加载数点处的天气数据。

load()

将数据加载到文档对象中。

load_and_split([text_splitter])

加载文档并分割成块。

参数
__init__(client: OpenWeatherMapAPIWrapper, places: Sequence[str]) None[source]

使用参数初始化。

参数
返回类型

None

async alazy_load() AsyncIterator[Document]

文档的懒加载器。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将数据加载到文档对象中。

返回类型

List[Document]

classmethod from_params(places: Sequence[str], *, openweathermap_api_key: Optional[str] = None) WeatherDataLoader[source]
参数
  • places (Sequence[str]) –

  • openweathermap_api_key (可选[字符串]) –

返回类型

WeatherDataLoader

lazy_load() Iterator[Document][source]

懒加载数点处的天气数据。

返回类型

迭代器[Document]

load() List[Document]

将数据加载到文档对象中。

返回类型

List[Document]

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]

加载文档并将其分割成块。块以文档的形式返回。

不要重写此方法。应将其视为已过时!

参数

text_splitter (Optional[TextSplitter]) – 用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。

返回:

文档列表。

返回类型

List[Document]

使用WeatherDataLoader的示例