mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
554 B
Python
27 lines
554 B
Python
import sys
|
|
|
|
import mariadb
|
|
from decouple import config
|
|
|
|
# Get password/host from .env
|
|
password = config('DB_PASS')
|
|
host = config('DB_HOST')
|
|
|
|
|
|
# Connect to MariaDB Platform and database Enso
|
|
def connection():
|
|
try:
|
|
conn = mariadb.connect(
|
|
user="hamothy",
|
|
password=password,
|
|
host=host,
|
|
port=3306,
|
|
database="enso"
|
|
)
|
|
except mariadb.Error as e:
|
|
print(f"Error connecting to MariaDB Platform: {e}")
|
|
sys.exit(1)
|
|
|
|
# Returning connection string
|
|
return conn
|