Use gandi API to get domain renewal dates

Closes: #134
This commit is contained in:
Edward Betts 2024-03-27 17:47:25 +00:00
parent 1e90df76dd
commit 422cd8aa9d
3 changed files with 44 additions and 0 deletions

View file

@ -23,6 +23,7 @@ from . import (
conference,
domains,
economist,
gandi,
gwr,
hn,
holidays,
@ -38,6 +39,7 @@ from . import (
)
from .types import Event, StrDict, Trip
here = dateutil.tz.tzlocal()
# deadline to file tax return
@ -449,6 +451,7 @@ async def get_data(
events += results[key]
events += read_events_yaml(my_data, last_year, next_year)
events += subscription.get_events(os.path.join(my_data, "subscriptions.yaml"))
events += gandi.get_events(data_dir)
events += economist.publication_dates(last_week, next_year)
events += meetup.get_events(my_data)
events += hn.whoishiring(last_year, next_year)