- 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>
21 lines
391 B
Python
21 lines
391 B
Python
#
|
|
# The Python Imaging Library
|
|
# $Id$
|
|
#
|
|
# path interface
|
|
#
|
|
# History:
|
|
# 1996-11-04 fl Created
|
|
# 2002-04-14 fl Added documentation stub class
|
|
#
|
|
# Copyright (c) Secret Labs AB 1997.
|
|
# Copyright (c) Fredrik Lundh 1996.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
from __future__ import annotations
|
|
|
|
from . import Image
|
|
|
|
Path = Image.core.path
|