-
Every app needs a user config file. Is there any good config parser to read (JSON, ...) that suits NiceGUI? Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
rodja
Feb 25, 2024
Replies: 2 comments 1 reply
-
NiceGUI uses orjson if possible because its much faster than the builtin json module. |
Beta Was this translation helpful? Give feedback.
1 reply
-
We mostly use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
KiddoV
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We mostly use
.env
files for simple configuration parameters: https://pypi.org/project/python-dotenv/Everything else is general json. But you can use what ever there is available in Python. NiceGUI has no objections 😉