7 lines
94 B
Python
7 lines
94 B
Python
|
import json
|
||
|
|
||
|
with open("config.json", "r") as file:
|
||
|
config = json.load(file)
|
||
|
|
||
|
print(config)
|