NAME Calendar::Dates::FRM - FRM exam calendar VERSION This document describes version 0.004 of Calendar::Dates::FRM (from Perl distribution Calendar-Dates-FRM), released on 2019-02-14. SYNOPSIS Using from Perl use Calendar::Dates::FRM; my $min_year = Calendar::Dates::FRM->get_min_year; # => 2018 my $max_year = Calendar::Dates::FRM->get_max_year; # => 2020 my $entries = Calendar::Dates::FRM->get_entries(2019); $entries result: [ { date => "2019-01-03", day => 3, month => 1, summary => "Exam results sent via email", tags => ["nov2018exam"], year => 2019, }, { date => "2019-01-31", day => 31, month => 1, summary => "Early registration closed", tags => ["may2019exam"], year => 2019, }, { date => "2019-02-01", day => 1, month => 2, summary => "Standard registration opened", tags => ["may2019exam"], year => 2019, }, { date => "2019-02-28", day => 28, month => 2, summary => "Standard registration closed", tags => ["may2019exam"], year => 2019, }, { date => "2019-03-01", day => 1, month => 3, summary => "Late registration opened", tags => ["may2019exam"], year => 2019, }, { date => "2019-04-15", day => 15, month => 4, summary => "Late registration closed", tags => ["may2019exam"], year => 2019, }, { date => "2019-04-15", day => 15, month => 4, summary => "Defer deadline", tags => ["may2019exam"], year => 2019, }, { date => "2019-05-01", day => 1, month => 5, summary => "Admission tickets released", tags => ["may2019exam"], year => 2019, }, { date => "2019-05-18", day => 18, month => 5, summary => "Exam day", tags => ["may2019exam"], year => 2019, }, { date => "2019-06-28", day => 28, month => 6, summary => "Exam results sent via email", tags => ["may2019exam"], year => 2019, }, { date => "2019-05-01", day => 1, month => 5, summary => "Early registration opened", tags => ["nov2019exam"], year => 2019, }, { date => "2019-07-31", day => 31, month => 7, summary => "Early registration closed", tags => ["nov2019exam"], year => 2019, }, { date => "2019-08-01", day => 1, month => 8, summary => "Standard registration opened", tags => ["nov2019exam"], year => 2019, }, { date => "2019-08-31", day => 31, month => 8, summary => "Standard registration closed", tags => ["nov2019exam"], year => 2019, }, { date => "2019-09-01", day => 1, month => 9, summary => "Late registration opened", tags => ["nov2019exam"], year => 2019, }, { date => "2019-10-15", day => 15, month => 10, summary => "Late registration closed", tags => ["nov2019exam"], year => 2019, }, { date => "2019-10-15", day => 15, month => 10, summary => "Defer deadline", tags => ["nov2019exam"], year => 2019, }, { date => "2019-11-01", day => 1, month => 11, summary => "Admission tickets released", tags => ["nov2019exam"], year => 2019, }, { date => "2019-11-16", day => 16, month => 11, summary => "Exam day", tags => ["nov2019exam"], year => 2019, }, ] Using from CLI (requires list-calendar-dates and calx) % list-calendar-dates -l -m FRM % calx -c FRM DESCRIPTION This module provides FRM exam calendar using the Calendar::Dates interface. DATES STATISTICS +---------------+-------+ | key | value | +---------------+-------+ | Earliest year | 2018 | | Latest year | 2020 | +---------------+-------+ DATES SAMPLES Entries for year 2018: +------------+---------------------------+-------------+ | date | summary | tags | +------------+---------------------------+-------------+ | 2018-12-01 | Early registration opened | may2019exam | +------------+---------------------------+-------------+ Entries for year 2019: +------------+------------------------------+-------------+ | date | summary | tags | +------------+------------------------------+-------------+ | 2019-01-03 | Exam results sent via email | nov2018exam | | 2019-01-31 | Early registration closed | may2019exam | | 2019-02-01 | Standard registration opened | may2019exam | | 2019-02-28 | Standard registration closed | may2019exam | | 2019-03-01 | Late registration opened | may2019exam | | 2019-04-15 | Late registration closed | may2019exam | | 2019-04-15 | Defer deadline | may2019exam | | 2019-05-01 | Admission tickets released | may2019exam | | 2019-05-18 | Exam day | may2019exam | | 2019-06-28 | Exam results sent via email | may2019exam | | 2019-05-01 | Early registration opened | nov2019exam | | 2019-07-31 | Early registration closed | nov2019exam | | 2019-08-01 | Standard registration opened | nov2019exam | | 2019-08-31 | Standard registration closed | nov2019exam | | 2019-09-01 | Late registration opened | nov2019exam | | 2019-10-15 | Late registration closed | nov2019exam | | 2019-10-15 | Defer deadline | nov2019exam | | 2019-11-01 | Admission tickets released | nov2019exam | | 2019-11-16 | Exam day | nov2019exam | +------------+------------------------------+-------------+ Entries for year 2020: +------------+-----------------------------+-------------+ | date | summary | tags | +------------+-----------------------------+-------------+ | 2020-01-02 | Exam results sent via email | nov2019exam | +------------+-----------------------------+-------------+ HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO Calendar::Dates App::CalendarDatesUtils contains CLIs to list dates from this module, etc. calx from App::calx can display calendar and highlight dates from Calendar::Dates::* modules AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2019 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.