Pytomlpp – A Toml Parser Alternative
github.com
Pytomlpp – A Toml Parser Alternative
1–2 of 2 posts
Re: Pytomlpp – A Toml Parser Alternative
#2Hi, I have been working on an alternative to `toml` and `tomlkit`. One thing I have found in my day job is that these libs are slow when parsing toml files, and I think the reason behind it is that they are pure-python implementations. I have made a wrapper for a high-quality C++ toml parser (tomlplusplus) and think this wrapper can provide better performance if your app parses a large number of toml files like mine do.
The repo is here: https://github.com/bobfang1992/pytomlpp
Please let me know your thoughts!
Bob