8 lines
96 B
Python
8 lines
96 B
Python
|
import json
|
||
|
|
||
|
f = open('config.json')
|
||
|
|
||
|
data = json.load(f)
|
||
|
|
||
|
database = data.get("database");
|