You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current table-generator uses Tempita as templating library for the generation of HTML and CSV files. The last release of this library was 6 years ago, and its website was deleted (wayback machine). The most important use of Tempita was for the old kind of HTML tables, for the CSV tables and the new react tables the template is actually quite short and could easily be rewritten in pure Python with some string manipulation. So after #479 is done we could get rid of this library.
The text was updated successfully, but these errors were encountered:
Although writing CSV through Python is not as declarative as having a
template, the template was not really well readable due to the long
lines anyway.
Part of #480.
Although this is not as nice to read, getting rid of Tempita is worth
it. Since we dump most data as JSON, the template was not that large
anymore anyway.
Part of #480.
Current table-generator uses Tempita as templating library for the generation of HTML and CSV files. The last release of this library was 6 years ago, and its website was deleted (wayback machine). The most important use of Tempita was for the old kind of HTML tables, for the CSV tables and the new react tables the template is actually quite short and could easily be rewritten in pure Python with some string manipulation. So after #479 is done we could get rid of this library.
The text was updated successfully, but these errors were encountered: