import flask from . import _storage app = flask.Flask(__name__) @app.route("/") def predictions(): body = "
Time | ΔTemp | Depth | Wind | SWI |
---|---|---|---|---|
{prediction.time}" body += f" | {prediction.temperature_difference}" body += f" | {prediction.convective_cloud_depth}" body += f" | {prediction.wind}" body += f" | {prediction.swi}" body += " |