zcbot/skills/ppt/scripts/svg_to_pptx/__init__.py

18 lines
465 B
Python

"""svg_to_pptx — SVG to PPTX conversion package.
Public API:
- main(): CLI entry point
- convert_svg_to_slide_shapes(): SVG -> DrawingML slide XML
- create_pptx_with_native_svg(): Build PPTX from SVG files
"""
from .pptx_cli import main
from .drawingml_converter import convert_svg_to_slide_shapes
from .pptx_builder import create_pptx_with_native_svg
__all__ = [
'main',
'convert_svg_to_slide_shapes',
'create_pptx_with_native_svg',
]