igdb/code/database/constants.py

9 lines
223 B
Python
Raw Normal View History

DB_NAME = "igdb"
DB_USER = "igdb"
DB_PW = "agentorange"
2020-01-06 08:31:21 +01:00
ADMIN_PW = "fuckmonsanto"
2020-01-08 21:31:00 +01:00
HOST = "localhost:3306"
CONNECTION_URI = "mysql+pymysql://{user}:{pw}@{url}/{db}".format(
user=DB_USER, pw=DB_PW, url=HOST, db=DB_NAME
)