See also
The third-party regex module, which has an API compatible with the standard library re module, but offers additional functionality and a more thorough Unicode support.
Could we add a similar note for simplejson (or even my own library jsonyx) in the json documentation?
simplejson offers more customisation and is available for a wider range of Python versions.
jsonyx offers low level control of the (de)serialisation, better error messages and has all recent enhancements from the standard library. Migration is harder because it’s configured differently.
I don’t think we should link to ultra fast libraries, because they don’t offer the same features as the standard library.
A feature those libraries do offer though is better performance, as an intentional trade-off. Whilst the json module documentation is not the right place for an exhaustive list of third-party implementations, I would expect to see at least one of the performance-focussed libraries on such a list, if it were added.
The reason the re docs link to the regex library is that it’s the single well-known widely-used third-party alternative to re, with arguably superior features. If there are multiple third-party JSON libraries, then it’s a good reason not to choose and list any one of them explicitly. We could instead add a generic note such as:
The standard json module provides a complete, compliant implementation of the JSON specification and should be sufficient for most use cases. However, in the case that more functionality is required than json offers, third-party alternatives can be found on PyPI.
I’m not convinced even that is necessary. The stdlib json module is fine for the vast majority of use cases, and if you need something else, you should already know that PyPI exists. Having the note will just send people off onto a completely unnecessary tangent, researching options that most likely won’t make a difference.