From 38301c44462e276452c6ec9baef8bb719c389aae Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 6 Mar 2025 21:50:40 +0200 Subject: [PATCH] Update top-pypi-packages filename 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. --- e2b_sandbox_template/get_top_pypi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2b_sandbox_template/get_top_pypi.py b/e2b_sandbox_template/get_top_pypi.py index bf2d3c3..61cc89f 100644 --- a/e2b_sandbox_template/get_top_pypi.py +++ b/e2b_sandbox_template/get_top_pypi.py @@ -2,7 +2,7 @@ def get_top_pypi_packages(limit=50): # API endpoint for PyPI download statistics (30 days) - url = "https://hugovk.github.io/top-pypi-packages/top-pypi-packages-30-days.min.json" + url = "https://hugovk.github.io/top-pypi-packages/top-pypi-packages.min.json" try: response = requests.get(url)