Skip to content

Instantly share code, notes, and snippets.

@hipertracker
Created November 13, 2020 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hipertracker/9e985701bd4c034497ede61208e017b5 to your computer and use it in GitHub Desktop.
Save hipertracker/9e985701bd4c034497ede61208e017b5 to your computer and use it in GitHub Desktop.
Irish bank holidays
from workalendar.europe import Ireland
def irish_bank_holidays(year: int) -> list:
calc = Ireland()
return [x[0] for x in calc.holidays(year)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment