chore: RIP PEP722

This commit is contained in:
Daylin Morgan 2024-01-03 13:13:24 -06:00
parent 5fb501aa2c
commit 1bb48eedbc
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
1 changed files with 0 additions and 13 deletions

View File

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