Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mawinkler/pyastroweatherio
Wrapper for the 7timer and met.no API designed to work with Home Assistant
https://github.com/mawinkler/pyastroweatherio
7timer astronomy forecast homeassistant homeassistant-integration uptonight
Last synced: 3 months ago
JSON representation
Wrapper for the 7timer and met.no API designed to work with Home Assistant
- Host: GitHub
- URL: https://github.com/mawinkler/pyastroweatherio
- Owner: mawinkler
- License: mit
- Created: 2021-01-29T08:25:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T11:01:43.000Z (9 months ago)
- Last Synced: 2024-04-22T12:02:19.270Z (9 months ago)
- Topics: 7timer, astronomy, forecast, homeassistant, homeassistant-integration, uptonight
- Language: Python
- Homepage:
- Size: 157 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyAstroWeatherIO
Wrapper for the ***7Timer*** and ***MET Norway Weather*** REST API. Designed to work with Home Assistant and the custom [AstroWeather](https://github.com/mawinkler/astroweather) integration.
This module communicates with the API endpoint of ***7Timer*** ([documentation](http://www.7timer.info/doc.php)) and ***MET Norway Weather*** ([documentation](https://api.met.no/weatherapi/locationforecast/2.0/documentation)). It retrieves current weather data for astronomical observations:
In addition to the weather data, some calculations for the astronomical twilight and Moon setting, rising and phase are implemented. They indicate the darkness you can expect the upcoming night.
A new addition is an experimental mode that attempts to approximate the calculation of the lifted index, seeing and atmospheric transparency using only Met.no weather data.
## Functions
The module exposes the following function:
```python
astroweather = AstroWeather(
session,
latitude,
longitude,
elevation,
timezone_info,
cloudcover_weight,
cloudcover_high_weakening,
cloudcover_medium_weakening,
cloudcover_low_weakening,
seeing_weight,
transparency_weight,
calm_weight,
uptonight_path,
experimental_features,
)astroweather.get_location_data
astroweather.get_hourly_forecast
```This will return a handle to the AstroWeather class and open the connection.
## Setup
```sh
pip3 install .
```