Write first data ingestion and SQL support

This commit is contained in:
David Doebel
2026-03-12 13:43:35 +01:00
parent f98de4d0a3
commit a503514bf5
5 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import psycopg2
conn = psycopg2.connect(
dbname="options_db",
user="quant_user",
password="strong_password",
host="144.91.73.49",
port="5432"
)
cursor = conn.cursor()
cursor.execute("SELECT * FROM underlyings;")
print(cursor.fetchall())