Wyciąganie danych finansowych za pomocą API i tworzenie specyficznych raportów. Projekt realizowany w ramach zajęć "Projekt zespołowy" prowadzony na uczelni WSB Merito w semestrze 7 (kierunek: Informatyka, grupa: I_IV_NW_ARIT2).
0
stars
0
forks
source link
Move db_config away from code file and into a .env (dotenv) file #3
Remove literally inserting host, username, etc. in db_config in this:
# Konfiguracja połączenia z bazą danych MySQL
db_config = {
'host': 'twoj_serwer_mysql',
'user': 'twoj_uzytkownik',
'password': 'twoje_haslo',
'database': 'twoja_baza_danych'
}
and instead store host, user, password, database in a .env file. This is a good practice for easier maintanence and security.
Remove literally inserting host, username, etc. in db_config in this:
and instead store host, user, password, database in a .env file. This is a good practice for easier maintanence and security.
Example: https://betterdatascience.com/python-dotenv/