←back to thread

3883 points kuroguro | 3 comments | | HN request time: 0.548s | source
1. fastball ◴[] No.26298977[source]
Why in the world would you roll your own JSON parser?

For reference, I just ran a 10MB file through the JSON parser I use in Python and it finished in 0.047s (vs 190s)

replies(2): >>26300372 #>>26300547 #
2. rapsey ◴[] No.26300372[source]
Python has a package manager and a rich standard library.
3. lordnacho ◴[] No.26300547[source]
I wonder if there's some corporate policy against using external libs. You'd think most of them would have solved this.