10 lines
157 B
Python
10 lines
157 B
Python
|
# Your database list
|
||
|
|
||
|
main_db = {
|
||
|
'host' : 'localhost',
|
||
|
'user' : 'root',
|
||
|
'password' : '',
|
||
|
'database' : 'your_db',
|
||
|
'autocommit' : True,
|
||
|
}
|