/lightweight-weather-recorder

A lightweight weather recorder written in Python using Flask and a SQLite database. Graph.js is used for graphing and some bootstrap code for styling.

Primary LanguageHTMLGNU General Public License v2.0GPL-2.0

Lightweight weather recorder

A small weather recording application built from a Flask backend utilising Bootstrap for styling and CSS on the frontend.

image

Graphs are enabled by Graph.js and fed by the SQLite database. These are highly configurable. image

Create DB:

$ from weather_recorder import db, create_app

$ app = create_app()

$ db.create_all(app=app)