mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
b201cfaa0f
# docs `ecosystem/integrations` update 4 Added missed integrations. Fixed inconsistencies. ## Who can review? @hwchase17 @dev2049
22 lines
386 B
Markdown
22 lines
386 B
Markdown
# Weather
|
|
|
|
>[OpenWeatherMap](https://openweathermap.org/) is an open source weather service provider.
|
|
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install pyowm
|
|
```
|
|
|
|
We must set up the `OpenWeatherMap API token`.
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](../modules/indexes/document_loaders/examples/weather.ipynb).
|
|
|
|
```python
|
|
from langchain.document_loaders import WeatherDataLoader
|
|
```
|