I am working on a python science project doing a lot of computing generating a lot of data.
The problem arises when reports are to be generated from this data, while embedded images (mostly calculated using matplotlib). I would like to use a python module or tool to be able to describe reports and βcreateβ HTML pages for these reports (or any format supported by the browser).
I was thinking of creating an ipython notebook, but I was not able to find out if there is a way to do this (except for creating json, but I doubt this approach).
Another way to use Sphinx is a bit like matplotlib, but I'm not sure how I could fine tune layouts on different pages.
The last option is to use jinja2 templates (or django-templates or any template engine) and insert the matplotlib code inside.
I know this is vague, but could not find any link.
source share