-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
PEPs API | ||
======== | ||
|
||
There is a read-only API of published PEPs available at: | ||
|
||
* https://peps.python.org/api/peps.json | ||
|
||
The structure is like: | ||
|
||
.. code-block:: json | ||
{ | ||
"0": { | ||
"number": 0, | ||
"title": "Index of Python Enhancement Proposals (PEPs)", | ||
"authors": "The PEP Editors", | ||
"discussions_to": null, | ||
"status": "Active", | ||
"type": "Informational", | ||
"topic": "", | ||
"created": "13-Jul-2000", | ||
"python_version": null, | ||
"post_history": null, | ||
"resolution": null, | ||
"requires": null, | ||
"replaces": null, | ||
"superseded_by": null, | ||
"url": "https://peps.python.org/pep-0000/" | ||
}, | ||
"1": { | ||
"number": 1, | ||
"title": "PEP Purpose and Guidelines", | ||
"authors": "Barry Warsaw, Jeremy Hylton, David Goodger, Alyssa Coghlan", | ||
"discussions_to": null, | ||
"status": "Active", | ||
"type": "Process", | ||
"topic": "", | ||
"created": "13-Jun-2000", | ||
"python_version": null, | ||
"post_history": "21-Mar-2001, 29-Jul-2002, 03-May-2003, 05-May-2012, 07-Apr-2013", | ||
"resolution": null, | ||
"requires": null, | ||
"replaces": null, | ||
"superseded_by": null, | ||
"url": "https://peps.python.org/pep-0001/" | ||
}, | ||
"2": { | ||
"number": 2, | ||
"title": "Procedure for Adding New Modules", | ||
"authors": "Brett Cannon, Martijn Faassen", | ||
"discussions_to": null, | ||
"status": "Active", | ||
"type": "Process", | ||
"topic": "", | ||
"created": "07-Jul-2001", | ||
"python_version": null, | ||
"post_history": "07-Jul-2001, 09-Mar-2002", | ||
"resolution": null, | ||
"requires": null, | ||
"replaces": null, | ||
"superseded_by": null, | ||
"url": "https://peps.python.org/pep-0002/" | ||
} | ||
} |