feat: preparing the database

This commit is contained in:
Laureηt 2022-03-20 16:31:30 +01:00
parent 1d5a361115
commit c39e5cb741
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
4 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
.venv .venv
.mypy_cache

0
data/.gitkeep Normal file
View file

BIN
dataset.example.db Normal file

Binary file not shown.

5
src/db.py Normal file
View file

@ -0,0 +1,5 @@
import sqlite3
DATA_FOLDER = "data/"
con = sqlite3.connect("dataset.db")