Created
June 10, 2024 20:08
-
-
Save h3xagn/4ae8b4c778d438a793e33a4472e9546b to your computer and use it in GitHub Desktop.
Building a home energy monitoring dashboard for your clevrHome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
from sqlalchemy import create_engine, text | |
# Database connection string | |
db_conn = "postgresql://username:password@192.168.2.10:5432/tsdb" | |
# Write the data to the database | |
def WriteSQLToDB(timestamp: datetime, tag_name: str, tag_value: float) -> None: | |
try: | |
sqlEngine = create_engine(db_conn, pool_recycle=300, pool_pre_ping=True, connect_args={"connect_timeout": 20}) | |
sql = f"INSERT INTO sensors_data (time, tagname, tagvalue) VALUES ('{timestamp}', '{tag_name}', {tag_value})" | |
with sqlEngine.connect() as connection: | |
connection.execute(text(sql)) | |
connection.commit() | |
print("-- DB: Records inserted.") | |
except: | |
print("** DB: Could not save to database for '{tag_name}'.") | |
finally: | |
sqlEngine.dispose() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment