From 1bb48eedbcc62a7354a72c91878c5af20e779642 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Wed, 3 Jan 2024 13:13:24 -0600 Subject: [PATCH] chore: RIP PEP722 --- examples/pep722.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 examples/pep722.py diff --git a/examples/pep722.py b/examples/pep722.py deleted file mode 100755 index f89fcd5..0000000 --- a/examples/pep722.py +++ /dev/null @@ -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])