{"id":20430945,"url":"https://github.com/david-dick/date-holidays-au","last_synced_at":"2026-02-27T12:07:04.434Z","repository":{"id":56840170,"uuid":"325907392","full_name":"david-dick/date-holidays-au","owner":"david-dick","description":"Determine Australian Public Holidays","archived":false,"fork":false,"pushed_at":"2026-02-16T20:26:13.000Z","size":108,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-17T02:51:07.891Z","etag":null,"topics":["australia","calculate-holidays","perl","perl-module","perl5","perl5-module","public-holidays"],"latest_commit_sha":null,"homepage":"https://metacpan.org/dist/Date-Holidays-AU","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/david-dick.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-01-01T02:53:32.000Z","updated_at":"2026-02-16T20:26:17.000Z","dependencies_parsed_at":"2024-01-02T01:03:34.857Z","dependency_job_id":"70710c57-effe-4aeb-a3f3-b15ba4b0c32d","html_url":"https://github.com/david-dick/date-holidays-au","commit_stats":{"total_commits":13,"total_committers":1,"mean_commits":13.0,"dds":0.0,"last_synced_commit":"0ac37334032526c01d1a572a46958e1b40cfbdd5"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/david-dick/date-holidays-au","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/david-dick%2Fdate-holidays-au","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/david-dick%2Fdate-holidays-au/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/david-dick%2Fdate-holidays-au/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/david-dick%2Fdate-holidays-au/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/david-dick","download_url":"https://codeload.github.com/david-dick/date-holidays-au/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/david-dick%2Fdate-holidays-au/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29893788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T09:48:51.284Z","status":"ssl_error","status_checked_at":"2026-02-27T09:48:43.992Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["australia","calculate-holidays","perl","perl-module","perl5","perl5-module","public-holidays"],"created_at":"2024-11-15T08:09:43.733Z","updated_at":"2026-02-27T12:07:04.426Z","avatar_url":"https://github.com/david-dick.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n\n    Date::Holidays::AU - Determine Australian Public Holidays\n\nVERSION\n\n    Version 0.37\n\nSYNOPSIS\n\n      use Date::Holidays::AU qw( is_holiday );\n      my ($year, $month, $day) = (localtime)[ 5, 4, 3 ];\n      $year  += 1900;\n      $month += 1;\n      my $state = 'VIC';\n      print \"Excellent\\n\" if is_holiday( $year, $month, $day, $state );\n\nDESCRIPTION\n\n    This module makes an attempt at describing Australian holidays using\n    the interface defined Date::Holidays::Abstract, which defines two\n    methods, is_holiday and holidays.\n\nSUBROUTINES/METHODS\n\n    is_holiday($year, $month, $day, $state, $params)\n\n      returns true or false depending to whether or not the date in\n      question is a holiday according to the state and the additional\n      parameters.\n\n    holidays(year =\u003e $year, state =\u003e $state, %params)\n\n      Returns a hashref of all defined holidays in the year according to\n      the state and the additional parameters. Keys in the hashref are in\n      'mmdd' format, the values are the names of the holidays.\n\n      The states must be one of the allowed ISO 3166-2:AU\n      \u003chttps://en.wikipedia.org/wiki/ISO_3166-2:AU\u003e codes;\n      'VIC','WA','NT','QLD','TAS','NSW','SA' or 'ACT'. The default state is\n      'VIC'. The following tables lists the allowable parameters for each\n      state;\n\n         State  Parameter             Default   Values\n         VIC    no_melbourne_cup      0         1 | 0\n         NT     region                'Darwin'  'Alice Springs' | 'Tennant Creek' | 'Katherine' | 'Darwin' | 'Borrolooda'\n         QLD    no_show_day           0         1 | 0\n         NSW    include_bank_holiday  0         1 | 0\n         ACT    include_bank_holiday  0         1 | 0\n         TAS    holidays              []        'Devonport Cup','King Island Show','Launceston Cup','Hobart Show','Recreation Day','Burnie Show','Agfest','Launceston Show','Flinders Island Show'\n\nDEPENDENCIES\n\n    Uses Date::Easter for easter calculations. Makes use of the Time::Local\n    modules from the standard Perl distribution.\n\nCONFIGURATION AND ENVIRONMENT\n\n    Date::Holidays::AU requires no configuration files or environment\n    variables.\n\nINCOMPATIBILITIES\n\n    None reported\n\nAUTHOR\n\n    David Dick \u003cddick@cpan.org\u003e\n\nBUGS AND LIMITATIONS\n\n    Support for WA's Queen's Birthday holiday only consists of hard-coded\n    values. Likewise for Grand Final Eve in Victoria.\n\nLICENSE AND COPYRIGHT\n\n    This program is free software; you can redistribute it and/or modify it\n    under the same terms as Perl itself.\n\nSEE ALSO\n\n    Date::Holidays::Abstract, Date::Holiday::DE, Date::Holiday::UK\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavid-dick%2Fdate-holidays-au","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavid-dick%2Fdate-holidays-au","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavid-dick%2Fdate-holidays-au/lists"}