What's faster:
- source code for a 10,000 key dict in a .py file
- same as json in a comment in the .py, read it using `__file__` and parsing out the json and loading with orjson
orjson! or heck any format really. Anything can turn a dict on the file system into a dict in memory faster than python itself.
dict in source are slooooooow. I should benchmark that across #python versions.