|
|
|
|
|
by indygreg2
2271 days ago
|
|
I converted PyOxidizer's configuration files from TOML to Starlark because I found it effectively impossible to express complex primitives in a static configuration file and the static nature was constraining end-user utility. A common solution to this problem is to invent some kind of templating or pre-evaluation of your static config file. But I find these solutions quickly externalize a lot of complexity and are frustrating because it is often difficult to debug their evaluation. At the point you want to do programming-like things in a config file, you might as well use a "real" programming language. Yes, it is complex in its own way. But if your target audience is programmers, I think it is an easy decision to justify. I'm extremely happy with Starlark and PyOxidizer's configuration files are vastly more powerful than the TOML ones were. https://pyoxidizer.readthedocs.io/en/stable/config.html |
|
I don't quite understand this part. Any examples?