Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix/add missing apis #41

Merged
merged 2 commits into from
Dec 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,9 @@ Run
# Changelog

```
latest
🔧 Fix: Add remaining get_today apis to init

2.12.0
🎉 get_today_solstice
🎉 get_today_equinox
Expand Down
4 changes: 4 additions & 0 deletions meteomoris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
get_tides = Meteo.get_tides
get_latest = Meteo.get_latest
get_uvindex = Meteo.get_uvindex

get_today_forecast = Meteo.get_today_forecast
get_today_sunrise = Meteo.get_today_sunrise
get_today_eclipse = Meteo.get_today_eclipse
get_today_moonphase = Meteo.get_today_moonphase
get_today_solstice = Meteo.get_today_solstice
get_today_equinox = Meteo.get_today_equinox
get_today_tides = Meteo.get_today_tides

__version__ = "2.12.0"