8 lines
175 B
Python
8 lines
175 B
Python
|
config = {
|
||
|
'user': 'your_mysql_username',
|
||
|
'password': 'your_mysql_password',
|
||
|
'host': 'localhost',
|
||
|
'database': 'your_database_name',
|
||
|
'autocommit': False,
|
||
|
}
|