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>
8 lines
501 B
Python
Vendored
8 lines
501 B
Python
Vendored
#!/usr/bin/env python3
|
|
"""Bouwt handleiding-chatgpt-notulen-assistent.html, .pdf en .docx. Gebruik: python3 build.py
|
|
Het echte werk staat in ../_gereedschap/build_handleiding.py (gedeeld door alle handleidingen)."""
|
|
import runpy, sys
|
|
from pathlib import Path
|
|
sys.argv = ["build_handleiding.py", str(Path(__file__).resolve().parent / "handleiding-chatgpt-notulen-assistent.md")]
|
|
runpy.run_path(str(Path(__file__).resolve().parent.parent / "_gereedschap" / "build_handleiding.py"), run_name="__main__")
|