Compare commits

..

No commits in common. "18bb7c1c622079b973d6afbab1be900c6af67b22" and "759096fc09c8f58341e1ffdb34a5947c3584d260" have entirely different histories.

View File

@ -44,12 +44,9 @@ def tables(
output_str.append(tfoot)
output_str.append(table[idx:])
_print_as_html(df)
_print_as_html(
df.groupby("Bundesland", as_index=False)[["Digitale Befragung"]].sum()
)
_print_as_html(df)
return render_template("base.html", tables="\n".join(output_str))
if __name__ == "__main__":
app.run()