Getting Started
Requirements 🐍
- Python 3.7+
- Internet access for live DOUE queries
Installation
Install from PyPI:
Install development dependencies (project clone):
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: