├── .dockerignore ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── examples ├── custom │ ├── __init__.py │ ├── main.py │ ├── out.pdf │ └── two_numbers.html └── iris │ ├── __init__.py │ ├── blue.css │ ├── logo.png │ ├── main.py │ └── out.pdf ├── poetry.lock ├── pydfy ├── __init__.py ├── models.py ├── renderer.py └── template │ ├── package.json │ └── src │ ├── base.css │ ├── partials │ ├── image.html │ ├── kpi.html │ ├── number.html │ ├── pagebreak.html │ ├── paragraph.html │ ├── section.html │ ├── table.html │ └── title.html │ └── template.html ├── pyproject.toml └── tests ├── __init__.py ├── stubs ├── hist.png └── test.css └── test_render.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/README.md -------------------------------------------------------------------------------- /examples/custom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/custom/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/custom/main.py -------------------------------------------------------------------------------- /examples/custom/out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/custom/out.pdf -------------------------------------------------------------------------------- /examples/custom/two_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/custom/two_numbers.html -------------------------------------------------------------------------------- /examples/iris/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/iris/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/iris/blue.css -------------------------------------------------------------------------------- /examples/iris/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/iris/logo.png -------------------------------------------------------------------------------- /examples/iris/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/iris/main.py -------------------------------------------------------------------------------- /examples/iris/out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/examples/iris/out.pdf -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pydfy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydfy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/models.py -------------------------------------------------------------------------------- /pydfy/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/renderer.py -------------------------------------------------------------------------------- /pydfy/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/package.json -------------------------------------------------------------------------------- /pydfy/template/src/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/base.css -------------------------------------------------------------------------------- /pydfy/template/src/partials/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/image.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/kpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/kpi.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/number.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/pagebreak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/pagebreak.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/paragraph.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/section.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/partials/table.html -------------------------------------------------------------------------------- /pydfy/template/src/partials/title.html: -------------------------------------------------------------------------------- 1 |

{{ component.text }}

2 | -------------------------------------------------------------------------------- /pydfy/template/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pydfy/template/src/template.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stubs/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/tests/stubs/hist.png -------------------------------------------------------------------------------- /tests/stubs/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/tests/stubs/test.css -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Donnype/pydfy/HEAD/tests/test_render.py --------------------------------------------------------------------------------