From 6578885a456bfa17ac7d6335f061f4efb9f38eab Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 5 Mar 2025 01:23:02 +0200 Subject: [PATCH] Update top-pypi-packages filename (#11959) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary To stay within quota, it now has just under 30 days of data, so the filename has been updated. Both will be available for a while. See https://github.com/hugovk/top-pypi-packages/pull/46. ## Test Plan ```sh curl https://hugovk.github.io/top-pypi-packages/top-pypi-packages-30-days.min.json | jq -r ❯ curl https://hugovk.github.io/top-pypi-packages/top-pypi-packages.min.json | jq -r ".rows | . diff pypi_8k_downloads_original.txt pypi_8k_downloads_new.txt ``` --- scripts/popular_packages/download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/popular_packages/download.sh b/scripts/popular_packages/download.sh index 6cac1c6e9..236f98aa4 100755 --- a/scripts/popular_packages/download.sh +++ b/scripts/popular_packages/download.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -curl https://hugovk.github.io/top-pypi-packages/top-pypi-packages-30-days.min.json | jq -r ".rows | .[].project" > pypi_8k_downloads.txt +curl https://hugovk.github.io/top-pypi-packages/top-pypi-packages.min.json | jq -r ".rows | .[].project" > pypi_8k_downloads.txt curl https://gist.githubusercontent.com/charliermarsh/07afd9f543dfea68408a4a42cede4be4/raw/6639cd58a2e10d6bb7821f891f00322c8630b60a/pypi_10k_most_dependents.txt > pypi_10k_most_dependents.txt