| Did you know ... | Search Documentation: |
| Pack marronniers -- README.md |
French editorial calendar (marronniers) 2026-2027 as SWI-Prolog facts.
A marronnier is a recurring date that French media and marketers plan content around: public holidays, commercial events (sales, Black Friday), themed world days, school holidays and season changes. This pack ships 139 of them for France, from 14 September 2026 to 31 December 2027, each with the source that fixes its date.
Interactive version: https://lescreavores.fr/outils/generateur-calendrier-editorial/
?- pack_install(marronniers).
?- use_module(library(marronniers)). % All facts: marronnier(Date, Nom, Categorie, Source) ?- marronnier(date(2026,10,31), Nom, Cat, Src). Nom = 'Halloween', Cat = fete, Src = 'Usage (31 octobre)'. % Marronniers starting in a given month, sorted ?- marronniers_du_mois(2026, 10, L). % Next marronnier on or after a date ?- prochain_marronnier(date(2026,9,15), M). % Names in a category, chronological order ?- marronniers_par_categorie(commercial, Noms).
Dates are date(Year, Month, Day) terms (first day of the event). Categories: ferie (public holiday), fete (non-statutory celebration), commercial, journee (themed day or week), vacances (school holidays), saison (season change).
swipl -g run_tests -t halt test/test_marronniers.pl
Every fact is one row of the dataset:
Les Creavores (2026). Marronniers 2026-2027. Mendeley Data, V1. doi:10.17632/gcgm8ztmcd.1. CC BY 4.0.
Dates come from fixed dates, public calculable rules (Easter, Mother's Day, Black Friday, sales periods set by the Code de commerce) or official texts (school calendar decrees). World days without a fixed date or public rule are excluded.
Names and sources inside the facts are in French, stored as UTF-8 atoms. The same 139 marronniers power the Les Creavores editorial calendar generator.
Code: MIT. Data: CC BY 4.0 (attribution: Les Creavores). See LICENSE.