Python and TOML: New Best Friends – Real Python

PHOTO EMBED

Mon Jul 18 2022 08:51:09 GMT+0000 (Coordinated Universal Time)

Saved by @wagm

https://toml.io/en/



(venv) $ python -m pip install tomli



# tic_tac_toe.toml
[user]
player_x.color = "blue"
player_o.color = "green"

[constant]
board_size = 3

[server]
url = "https://tictactoe.example.com"



import tomli
with open("tic_tac_toe.toml", mode="rb") as fp:
    config = tomli.load(fp)
content_copyCOPY

https://realpython.com/python-toml/?__s