viv/examples/pep722.py

14 lines
337 B
Python
Executable file

#!/usr/bin/env -S viv run -s
# In order to run, this script needs the following 3rd party libraries
#
## Script Dependencies:
## requests
## rich
import requests
from rich.pretty import pprint
resp = requests.get("https://peps.python.org/api/peps.json")
data = resp.json()
pprint([(k, v["title"]) for k, v in data.items()][:10])