mirror of
https://gitlab.com/chicken-riders/RcGcDb.git
synced 2025-02-24 01:04:09 +00:00
6 lines
159 B
Python
6 lines
159 B
Python
import sqlite3
|
|
from src.config import settings
|
|
|
|
db_connection = sqlite3.connect(settings.get("database_path", 'rcgcdb.db'))
|
|
db_cursor = db_connection.cursor()
|