8a1db19b52
Schoolgids-assistent, Ouderbrief-assistent, Toetsweekplanner, Lesmateriaal-check, Studiecoach en Notulen-assistent, gebouwd en getest in een ChatGPT Business-werkruimte, met instructies, fictieve documenten, schermafbeeldingen en gebouwde PDF's. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
10 lines
368 B
Python
Vendored
10 lines
368 B
Python
Vendored
#!/usr/bin/env python3
|
|
"""Bouwt alle handleidingen en bijlagen in één keer: python3 _gereedschap/bouw_alles.py"""
|
|
import runpy, sys
|
|
from pathlib import Path
|
|
root = Path(__file__).resolve().parent.parent
|
|
for build in sorted(root.glob("*/build.py")):
|
|
print(f"== {build.parent.name}")
|
|
sys.argv = [str(build)]
|
|
runpy.run_path(str(build), run_name="__main__")
|