diff --git a/README.md b/README.md index 4ade117..7ed01d9 100644 --- a/README.md +++ b/README.md @@ -380,6 +380,9 @@ Run # Changelog ``` +latest +🔧 Fix: Add remaining get_today apis to init + 2.12.0 🎉 get_today_solstice 🎉 get_today_equinox diff --git a/meteomoris/__init__.py b/meteomoris/__init__.py index 12a89e3..27dfec5 100644 --- a/meteomoris/__init__.py +++ b/meteomoris/__init__.py @@ -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"