15 lines
264 B
Python
15 lines
264 B
Python
|
"""
|
||
|
script for database interaction
|
||
|
"""
|
||
|
__author__ = "Florian Kellermann, Linus Eickhoff"
|
||
|
__date__ = "15.03.2022"
|
||
|
__version__ = "0.0.1"
|
||
|
__license__ = "None"
|
||
|
|
||
|
# get db_key from env
|
||
|
|
||
|
class DB_Handler:
|
||
|
|
||
|
def __init__(self, db_adress):
|
||
|
# tbd
|
||
|
return
|