Hacker News new | ask | show | jobs
by dith3r 2756 days ago
Python is fast at parsing JSON, Go had hard time to match parsing speed of it. Additionally you have PyPy to help.
2 comments

Python is fast at doing anything that doesn't involve running Python.

That's an important caveat. Python's C JSON parser library is super-fast, but if you want to use the data for anything but a simple equality check afterwards, it'll be slow as molasses.

Or you'll write a C extension for it...