|
Revision 72:ff1bfd773909, 494 bytes
(checked in by Nicolas ?vrard <nicoe@…>, 5 years ago)
|
|
Do not use the entrypoint stuff anymore.
|
| Line | |
|---|
| 1 | """ |
|---|
| 2 | relatorio |
|---|
| 3 | ========= |
|---|
| 4 | |
|---|
| 5 | A templating library which provides a way to easily output all kind of |
|---|
| 6 | different files (odt, ods, png, svg, ...). Adding support for more filetype is |
|---|
| 7 | easy: you just have to create a plugin for this. |
|---|
| 8 | |
|---|
| 9 | relatorio also provides a report repository allowing you to link python objects |
|---|
| 10 | and report together, find reports by mimetypes/name/python objects. |
|---|
| 11 | """ |
|---|
| 12 | from relatorio.reporting import MIMETemplateLoader, ReportRepository, Report |
|---|
| 13 | import templates |
|---|
| 14 | |
|---|
| 15 | __version__ = '0.4.0' |
|---|