Skip to main content

bdew_datetimes

GitHub Workflow StatusPyPI - Python VersionPyPI - LicensePyPI

A collection of utils to work with datetimes and holidays in the German energy market and is based on the python-holiday package.

The implementation considers the publications of the BDEW (Bundesverband der Energie- und Wasserwirtschaft e. V.) and EDI@Energy, which provide boundaries and guidance for the data exchange on the german energy market.

Current highlights:

  • BDEW-holiday calendar
    • allows dict like evaluation of dates and datetimes and contains all holidays considered by the BDEW
  • Statutory Periods ("Gesetzliche Fristen")
    • calculate dates of the kind "x Werktage ab Stichtag"
    • calculate dates of the kind "nter Werktag des Fristen- bzw. Liefermonats"
  • Gas-Day / Market Day evaluation

Future Scope:

  • providing subdivision holiday calendars to allow granular load profiles

Quick Start and Examples

Install the package from pypi:

pip install bdew-datetimes

Check if a date is a specific BDEW Holidays

[!NOTE]
By "specific" we mean: Holidays that are neither nation- nor statewide holidays (those are defined in the upstream package holidays) but defined by the BDEW directly. In 2025 those are: Sonderfeiertag 24h Lieferantenwechsel, Heiligabend and Silvester only.

The HolidaySum returned by create_bdew_calendar contains the BDEW specific holidays. This means it contains those holidays which are defined by BDEW which includes Heiligabend and Silvester as well as special days without Marktkommunikation but not the local or nationwide holidays in Germany and its states.

from datetime import date
from bdew_datetimes import create_bdew_calendar

bdew_holidays = create_bdew_calendar()  # this behaves like a dict

assert date(2022, 12, 31) in bdew_holidays # Silvester is a BDEW holiday
assert date(2022, 8, 8) in bdew_holidays is False # Augsburger Friedensfest is _not_ a BDEW holiday (but a holiday in Augsburg only)
assert date(2022, 12, 2) in bdew_holidays is False # The 12th of February is not a BDEW holiday

print(bdew_holidays.get('2022-01-01'))  # prints "Neujahr"

The union (type HolidaySum) of both nation and state wide holidays and the BDEW holidays (only the latter is returned by create_bdew_calendar) is the relevant calendar for German utilities.

Check if a given Date is a BDEW Working Day

BDEW working days are those days taken into account for the "Fristenberechnung". The function is_bdew_working_day considers both national and state wide holidays and BDEW holidays:

from datetime import date

from bdew_datetimes import is_bdew_working_day

assert is_bdew_working_day(date(2023, 1, 1)) is False  # Neujahr (national holiday)
assert is_bdew_working_day(date(2023, 1, 2)) is True  # regular weekday
assert is_bdew_working_day(date(2023, 1, 6)) is False  # Heilige Drei Könige (local holiday in parts of Germany)
assert is_bdew_working_day(date(2023, 4, 7)) is False  # Karfreitag (national holiday, but based on an astronomical calendar)
assert is_bdew_working_day(date(2023, 12, 24)) is False  # Heiligabend (BDEW holiday)

You can also get the next or previous working day for any date:

from datetime import date

from bdew_datetimes import get_next_working_day, get_previous_working_day

assert get_next_working_day(date(2023, 1, 1)) == date(2023, 1, 2)  # the next working day after Neujahr
assert get_previous_working_day(date(2023, 1, 1)) == date(2022, 12, 30)  # the last working day of 2022
assert get_next_working_day(date(2023, 1, 20)) == date(2023, 1, 23)  # the next working day after a friday is the next monday

Calculate Statutory Periods

Statutory periods define the maximum time between e.g. the EDIFACT message for the "Anmeldung" and the actual start of supply ("Lieferbeginn").

from datetime import date

from bdew_datetimes import add_frist
from bdew_datetimes import Period
from bdew_datetimes.enums import DayType, EndDateType

# Eingang der Anmeldung des LFN erfolgt am 04.07.2016. Der Mindestzeitraum von zehn WT
# beginnt am 05.07.2016 und endet am 18.07.2016. Frühestes zulässiges Anmeldedatum
# ist damit der 19.07.2016, sodass die Marktlokation dem LFN frühestens zum Beginn
# des vorgenannten Tages zugeordnet wird.
eingang_der_anmeldung = date(2016, 7, 4)
gesetzliche_frist = Period(
  10,
  DayType.WORKING_DAY,
  end_date_type=EndDateType.EXCLUSIVE
  # lieferbeginn is the exclusive end of the previous supply contract
)
fruehest_moeglicher_lieferbeginn = add_frist(eingang_der_anmeldung, gesetzliche_frist)
assert fruehest_moeglicher_lieferbeginn == date(2016, 7, 19)

Calculate "Liefer- and Fristenmonate"

Liefer- and Fristenmonat are concepts used in MaBiS and GPKE:

from datetime import date

from bdew_datetimes import get_nth_working_day_of_month
from bdew_datetimes.enums import MonthType

# returns the 18th working day of the current month in Germany
get_nth_working_day_of_month(18)

# the 18th working day of November 2023
assert get_nth_working_day_of_month(18, start=date(2023, 11, 1)) == date(2023, 11, 28)

# the 42th working day of Fristenmonat July 2023
assert get_nth_working_day_of_month(42, month_type=MonthType.FRISTENMONAT, start=date(2023, 7, 1)) == date(2023, 9, 29)

Notes

The BDEW considers all days as holidays, which are nationwide holidays and days, which are a holiday in at least one state. Furthermore, the 24. and the 31. December are holidays as well. Therefore, this package utilizes the composition of all available german holiday calendars and adds the two additional days.

Shifting holidays to the next weekday if they fall on a weekend is currently not considered.

License

This library is licensed under the MIT license, see the LICENSE file.

Users

This library is used by the following projects:

Release files for bdew-datetimes 0.11.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bdew-datetimes 0.11.0
File Size Uploaded
bdew_datetimes-0.11.0.tar.gz 16.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for bdew-datetimes 0.11.0
File Interpreter ABI Platform
bdew_datetimes-0.11.0-py3-none-any.whl Python 3 none any Details

Total release size: 30.1 kB

Release files / bdew_datetimes-0.11.0.tar.gz

Download URL bdew_datetimes-0.11.0.tar.gz
Size 16.2 kB
Tags Source
SHA-256 checksum
How to use checksums
0f6bbd7a2569f13194bcf707afa3b518621d12c603bea5aa0e9847fa16c56434
BLAKE2b-256 checksum
How to use checksums
bd3dd1e7664d21a8771c41d766a415c8e14325d46e934c90255ca51a84f0d764
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jan 11, 2026.

Transparency log

Release files / bdew_datetimes-0.11.0-py3-none-any.whl

Download URL bdew_datetimes-0.11.0-py3-none-any.whl
Size 13.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c92e444bd47a967b324826a3c450b88f2cd5de1e317b1d27380763168a490e81
BLAKE2b-256 checksum
How to use checksums
9194d3293a7b58ffb173c6a618a2245f6e77440a6d6bb4e51d772e1b168af0a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jan 11, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.11.0 This release

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.10

2 release files

0.3.9

2 release files

0.3.8

2 release files

0.3.6

2 release files

0.3.5

2 release files

0.3.4

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page