Metadata-Version: 2.4
Name: meteostat
Version: 2.1.2
Summary: Access and analyze historical weather and climate data with Python.
License-File: LICENSE
Author: Meteostat
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pandas (>=2.3.0,<4.0.0)
Requires-Dist: pytz (>=2023.3.post1,<2024.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

<!-- PROJECT SHIELDS -->
<div align="center">
  
  [![Downloads][downloads-shield]][downloads-url]
  [![Provider Tests][provider-tests-shield]][provider-tests-url]
  [![Issues][issues-shield]][issues-url]
  [![MIT License][license-shield]][license-url]
  [![Stargazers][stars-shield]][stars-url]
  
</div>


<!-- PROJECT LOGO -->
<br />
<div align="center">
  <a href="https://github.com/meteostat/meteostat">
    <img src="https://media.meteostat.net/icon.svg" alt="Meteostat Logo" width="80" height="80">
  </a>

  <h3 align="center">Meteostat Python Package</h3>

  <p align="center">
    Access and analyze historical weather and climate data with Python.
    <p>
      <a href="https://dev.meteostat.net/python"><strong>Explore the docs »</strong></a>
    </p>
    <p>
      <a href="https://meteostat.net">Visit Website</a>
      &middot;
      <a href="https://github.com/meteostat/meteostat/issues">Report Bug</a>
      &middot;
      <a href="https://github.com/orgs/meteostat/discussions">Request Feature</a>
    </p>
  </p>
</div>

## 📚 Installation

The Meteostat Python package is available through [PyPI](https://pypi.org/project/meteostat/):

```sh
pip install meteostat
```

## 🚀 Usage

Let's plot 2018 temperature data for Frankfurt, Germany:

```python
from datetime import date
import matplotlib.pyplot as plt
import meteostat as ms

# Specify location and time range
POINT = ms.Point(50.1155, 8.6842, 113)  # Try with your location
START = date(2018, 1, 1)
END = date(2018, 12, 31)

# Get nearby weather stations
stations = ms.stations.nearby(POINT, limit=4)

# Get daily data & perform interpolation
ts = ms.daily(stations, START, END)
df = ms.interpolate(ts, POINT).fetch()

# Plot line chart including average, minimum and maximum temperature
df.plot(y=[ms.Parameter.TEMP, ms.Parameter.TMIN, ms.Parameter.TMAX])
plt.show()
```

Take a look at the expected output:

![2018 temperature data for Frankfurt, Germany][product-screenshot]

## 🤝 Contributing

Please read our [contributing guidelines](https://dev.meteostat.net/python/contributing) for details on how to contribute to the Meteostat Python library.

**Top contributors**

<a href="https://github.com/meteostat/meteostat/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=meteostat/meteostat" alt="Meteostat Contributors" />
</a>

## 🌟 Featured In

Meteostat has been featured and used by various media outlets and organizations, including:

- [Towards Data Science](https://towardsdatascience.com/get-temperature-data-by-location-with-python-52ed872dd621/)
- [ZEIT ONLINE](https://www.zeit.de/digital/internet/2022-03/desinformation-russland-ukraine-fotos-fake-news-falschinformation-echtheit)
- [Deutsche Presse-Agentur (dpa)](https://dpa-factchecking.com/germany/230103-99-92282/)
- [heise online](https://www.heise.de/news/Open-Source-Projekt-zu-Klimadaten-Meteostat-Python-Library-1-0-erschienen-4985015.html)

Join the growing community of users and researchers relying on Meteostat for their weather data needs.

## 📄 License

Meteostat is licensed under the [**MIT License**](https://github.com/meteostat/meteostat/blob/main/LICENSE). Data provided by Meteostat is generally licensed under the [**Creative Commons Attribution 4.0 International (CC BY 4.0)**](https://creativecommons.org/licenses/by/4.0) license. Please refer to the [documentation](https://dev.meteostat.net/license) for more information.


<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
[downloads-shield]: https://img.shields.io/pypi/dm/meteostat
[downloads-url]: https://pypi.org/project/meteostat/
[provider-tests-shield]: https://github.com/meteostat/meteostat/actions/workflows/provider-tests.yml/badge.svg
[provider-tests-url]: https://github.com/meteostat/meteostat/actions/workflows/provider-tests.yml
[issues-shield]: https://img.shields.io/github/issues/meteostat/meteostat.svg
[issues-url]: https://github.com/meteostat/meteostat/issues
[license-shield]: https://img.shields.io/github/license/meteostat/meteostat.svg
[license-url]: https://github.com/meteostat/meteostat?tab=readme-ov-file#-license
[product-screenshot]: https://dev.meteostat.net/assets/images/example-8b6cf2a3fe2efa285bc72d7dc72c4865.png
[stars-shield]: https://img.shields.io/github/stars/meteostat/meteostat.svg
[stars-url]: https://github.com/meteostat/meteostat/stargazers
