Some checks failed
CI / frontend-tests (push) Has been skipped
CI / changes (push) Successful in 10s
CI / changes (pull_request) Successful in 7s
CI / frontend-tests (pull_request) Has been skipped
CI / backend-tests (push) Successful in 7m39s
CI / backend-tests (pull_request) Successful in 7m39s
Deploy / deploy (push) Has been cancelled
Deploy / build-frontend (push) Has been cancelled
Deploy / build-backend (push) Has been cancelled
Deploy / build-worker (push) Has been cancelled
Deploy / changes (push) Successful in 6s
Дополняет движок: exporters/{dxf,pdf}.py (ezdxf + WeasyPrint lazy) + 5 тест-модулей
(geometry/placement/teap_financial/exporters/api). Не вошли в предыдущий commit
(untracked-директории).
11 lines
464 B
Python
11 lines
464 B
Python
"""Generative Design — Stage 1c exporters (DXF geometry + PDF summary).
|
|
|
|
Distinct from Site Finder's ``app.services.exporters`` (report_pdf etc.): these
|
|
serialise *concept* output — parcel + placed buildings (DXF) and the ТЭП/финмодель
|
|
summary (PDF). Both are deterministic and consume already-computed Stage 1a/1b/1c
|
|
objects (no re-parsing, no DB, no network).
|
|
"""
|
|
|
|
from app.services.generative.exporters import dxf, pdf
|
|
|
|
__all__ = ["dxf", "pdf"]
|