5 lines
93 B
Python
5 lines
93 B
Python
import os, toml
|
|
from dotenv import load_dotenv
|
|
|
|
config = toml.load("conf.toml")
|
|
print(config) |