Calendar related dataset for noccylabs/dataset
Go to file
Chris cd47d2144e Addded Swedish holidays for 2023 2023-01-12 17:47:58 +01:00
bankholidays/se Addded Swedish holidays for 2023 2023-01-12 17:47:58 +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) {
  // ...
}