ccb209f5c1
Schoolgids-assistent, Ouderbrief-assistent, Toetsweekplanner, Lesmateriaal-check, Studiecoach en Notulen-assistent als Gems, met instructies, kennisbestanden, vervaagde schermafbeeldingen, README met vergelijking Gemini/Copilot/Dify en CHANGELOG. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
8 lines
487 B
Python
8 lines
487 B
Python
#!/usr/bin/env python3
|
|
"""Bouwt handleiding-gemini-studiecoach.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-gemini-studiecoach.md")]
|
|
runpy.run_path(str(Path(__file__).resolve().parent.parent / "_gereedschap" / "build_handleiding.py"), run_name="__main__")
|