For generating a pdf-report with apache-superset charts
Project description
superset-pdf-report
superset-pdf-report is a Python tool for downloading charts from the Apache Superset API or URLs to generate a PDF report via LaTeX and send it via e-mail.
There are two possiblilities for using this tool:
- run it by Celery via supersetconfig.py
- run it via class PDF_report
Installation
Use the package manager pip to install superset-pdf-report.
pip install superset-pdf-report
Configuration of superset-pdf-report
Open config.py in supersetpdfreport and enter the needed information or use the suggested environment variables.
Create your job
Create a <your_job>.json
in supersetpdfreport/jobs
Please refer to the example_job.json
Configuration and start via Celery
Insert in superset_config.py
Celery config:
CELERY_IMPORTS = 'supersetpdfreport.task'
Add task in CELERYBEAT_SCHEDULE
'reports-pdf-scheduler': {
'task':'reports-pdf-scheduler',
'schedule': crontab(minute='*'),
}
You have to restart your Apache Superset application for this changes.
Start via PDF_report()
Create a start.py
from supersetpdfreport.pdf_report import PDF_report
job_name = "<your job>.json"
pdf_report_task = PDF_report()
pdf_report_task.execute(job_name)
Start the Python script
python3 start.py
Usage
- Download the charts you need for the report
- Download the images you need for the report
- Create your LaTeX file in /latex and use the images in latex/images
- Activate the "generate_pdf" in job
- Send it via e-mail or send to nextcloud
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for superset-pdf-report-0.6.7.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53b33bba563babebd1e87a34e1563ba405eed6263c37e3d2153d293b629bf68d |
|
MD5 | 18c18afc65d2654d57cf84176c459e57 |
|
BLAKE2b-256 | ec5ca361811e951f545b2d974ecdfdb18bc251d4955b72d36961e0b5657862be |
Hashes for superset_pdf_report-0.6.7.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b90ee5c1ed9f2de443597fafb5e8a88351e33f4f498f3a62ef6d134b7a0d652a |
|
MD5 | 8b8d88294dc2a267dafad49224142932 |
|
BLAKE2b-256 | e922d21698677174efcdc07140c3d76e2e2baf5703976ab18fd0f76f9dcb0c81 |