mirror of
https://gitlab.com/chicken-riders/RcGcDb.git
synced 2025-02-23 00:54:09 +00:00
7 lines
199 B
Python
7 lines
199 B
Python
import sqlite3
|
|
from src.config import settings
|
|
|
|
db_connection = sqlite3.connect(settings.get("database_path", 'rcgcdb.db'))
|
|
db_connection.row_factory = sqlite3.Row
|
|
db_cursor = db_connection.cursor()
|