TOML
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Configuration files |extensions={{ext|toml}} |released=2013 }} '''TOML''' (Tom's Obvious, Minimal Language) is a general-purpose co...") |
Ross-spencer (Talk | contribs) (Add Python info) |
||
| Line 6: | Line 6: | ||
}} | }} | ||
'''TOML''' (Tom's Obvious, Minimal Language) is a general-purpose configuration file format. It is a modernized variant of [[INI]]. | '''TOML''' (Tom's Obvious, Minimal Language) is a general-purpose configuration file format. It is a modernized variant of [[INI]]. | ||
| + | |||
| + | == Language support == | ||
| + | |||
| + | * Python: TOML was introduced into the Python standard library from [https://docs.python.org/3.12/library/tomllib.html version 3.11]. | ||
== Links == | == Links == | ||
| + | |||
* [https://github.com/toml-lang/toml TOML] | * [https://github.com/toml-lang/toml TOML] | ||
| + | * [https://docs.python.org/3.12/library/tomllib.html#conversion-table Python TOML Conversion Table] | ||
Revision as of 19:50, 18 March 2026
TOML (Tom's Obvious, Minimal Language) is a general-purpose configuration file format. It is a modernized variant of INI.
Language support
- Python: TOML was introduced into the Python standard library from version 3.11.