AX 과제 - 1 → AX 강의 - 1 폴더명 변경 및 강의형 산출물 추가
Made-with: Cursor
This commit is contained in:
17
AX 강의 - 1/AI 시대의 커리어 생존 전략 - AI와 공존하는 전문가 되기/make_ppt.py
Normal file
17
AX 강의 - 1/AI 시대의 커리어 생존 전략 - AI와 공존하는 전문가 되기/make_ppt.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import subprocess
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def main() -> None:
|
||||
base = Path(__file__).resolve().parent
|
||||
common = base.parent / "_common" / "make_ppt.py"
|
||||
spec = base / "slides.json"
|
||||
out = base / f"{base.name}.pptx"
|
||||
subprocess.check_call([sys.executable, str(common), "--spec", str(spec), "--out", str(out)])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user