You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given any change could inevitably have an impact on any tools out there using this data, which probably handle this anyway, might it not make sense to add a parallel property that is an actual JSON list of authors? This way no additional handling is needed by a client (they're already parsing JSON) and the format remains backward-compatible.
The
authors
field in the API is a comma-separated list:https://peps.python.org/api/peps.json
For example:
"authors": "Barry Warsaw, Jeremy Hylton, David Goodger, Alyssa Coghlan"
However, there's at least one name with a comma:
"authors": "Fred L. Drake, Jr."
Let's handle this properly, perhaps using the
csv
module?Thanks to @davep for finding this.
The text was updated successfully, but these errors were encountered: