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)使用参数初始化。
文档的懒加载器。
aload
()将数据加载到文档对象中。
from_params
(places, *[, openweathermap_api_key])懒加载数点处的天气数据。
load
()将数据加载到文档对象中。
load_and_split
([text_splitter])加载文档并分割成块。
- 参数
client (OpenWeatherMapAPIWrapper) –
places (Sequence[str]) –
- __init__(client: OpenWeatherMapAPIWrapper, places: Sequence[str]) None [source]¶
使用参数初始化。
- 参数
client (OpenWeatherMapAPIWrapper) –
places (Sequence[str]) –
- 返回类型
None
- classmethod from_params(places: Sequence[str], *, openweathermap_api_key: Optional[str] = None) WeatherDataLoader [source]¶
- 参数
places (Sequence[str]) –
openweathermap_api_key (可选[字符串]) –
- 返回类型
- load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document] ¶
加载文档并将其分割成块。块以文档的形式返回。
不要重写此方法。应将其视为已过时!
- 参数
text_splitter (Optional[TextSplitter]) – 用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。
- 返回:
文档列表。
- 返回类型
List[Document]