mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
13 lines
353 B
Python
Executable file
13 lines
353 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 # 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])
|