Json - faster parsing (scripting)
I need to parse large json files via scripting in After Effects. Currently I use the json2 library.
It works well but it's very very slow. Something that is almost instant in Python can take several minutes. I've searched around and I haven't found a solution except for using an eval call on the string which I'm not to happy with as it's a potential security risk.
Are there any solutions to this or any other third-party libraries that are faster? If not, is there any way to make the "eval" call safer?
