Skip to content

Getting Started

Requirements 🐍

  • Python 3.7+
  • Internet access for live DOUE queries

Installation

Install from PyPI:

pip install bulletin-fetcher

Install development dependencies (project clone):

pip install -e .[dev]

First Query 🚀

from bulletin.doue.api.client import DoueBulletinClient

client = DoueBulletinClient()
acts = client.get_acts(date="2025-03-27")

for act in acts[:3]:
 print(act.celex_uri)
 print(act.title)

Run the Example Script

The repository includes an executable helper script:

python scripts/run_doue.py