#!/usr/bin/env python3 import os import sqlite3 db_path = "terminfinder_db.sqlite" if os.path.exists(db_path): print(f"DB named {db_path} already exists") exit(1) con = sqlite3.connect(db_path) cur = con.cursor() cur.execute( "CREATE TABLE meeting(meeting_id, title, description, possible_dates, participants, PRIMARY KEY (meeting_id))" )