- gerar_plano.py: le planilha de planejamento (.xlsx) e um PPTX-modelo, gera uma quinzena por slide pintando cada quadrante (Geotecnia, Infraestrutura, Superestrutura) conforme o status na data - cores.json: cores/opacidades configuraveis sem precisar mexer no codigo - dist-linux/: executavel standalone (PyInstaller) + arquivos de exemplo - dist-windows/: pacote com Python embeddable (sem instalacao) + .bat Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
24 lines
473 B
Python
24 lines
473 B
Python
"""Exceptions used with python-pptx.
|
|
|
|
The base exception class is PythonPptxError.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
class PythonPptxError(Exception):
|
|
"""Generic error class."""
|
|
|
|
|
|
class PackageNotFoundError(PythonPptxError):
|
|
"""
|
|
Raised when a package cannot be found at the specified path.
|
|
"""
|
|
|
|
|
|
class InvalidXmlError(PythonPptxError):
|
|
"""
|
|
Raised when a value is encountered in the XML that is not valid according
|
|
to the schema.
|
|
"""
|