created db_handler and fetchers

This commit is contained in:
Linus Eickhoff 2022-03-15 08:55:12 +01:00
parent ca06985d51
commit f1d3fd0050
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,15 @@
"""
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

View File

View File

@ -0,0 +1,7 @@
"""
script for share fetching (by symbols (e.g. AAPL, TSLA etc.))
"""
__author__ = "Florian Kellermann, Linus Eickhoff"
__date__ = "15.03.2022"
__version__ = "0.0.1"
__license__ = "None"