Calendar related dataset for noccylabs/dataset
Go to file
Chris c60ad76e2d Added Swedish holidays for 2024 and 2025 2024-03-07 00:47:49 +01:00
bankholidays/se Added Swedish holidays for 2024 and 2025 2024-03-07 00:47:49 +01:00
README.md Fixed composer, readme 2022-09-03 16:19:44 +02:00
composer.json Fixed composer, readme 2022-09-03 16:19:44 +02:00
dataset.json Fixed dataset manifest 2022-09-03 15:49:29 +02:00

README.md

Calendar related datasets

This package contains calendar related data that can be imported into any application.

Datasets

Name Contents
bankholidays.se Swedish bank holidays

Usage

Open the dataset and iterate the data:

$dm = new NoccyLabs\Dataset\DatasetManager();
$ds = $dm->openDataset("noccylabs/dataset-calendar#bankholidays.se");
// Iterate the records
foreach ($ds as $row) {
  // ...
}