7 lines
109 B
Python
7 lines
109 B
Python
import toml
|
|
|
|
with open('test.toml', 'r+') as config:
|
|
config_file = toml.load(config)
|
|
|
|
print(config_file)
|