Open a SQLite connection.
(db_path: Path = DB_PATH)
| 57 | |
| 58 | |
| 59 | def get_connection(db_path: Path = DB_PATH) -> sqlite3.Connection: |
| 60 | """Open a SQLite connection.""" |
| 61 | return sqlite3.connect(db_path) |
| 62 | |
| 63 | |
| 64 | def get_table_counts(conn: sqlite3.Connection) -> Dict[str, int]: |
no outgoing calls
no test coverage detected