From 1985804a6e08eaa89a8e2821b00d8f9b79147b10 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 28 Jun 2024 05:50:11 +0530 Subject: [PATCH 01/15] Add 32 bit i686 --- setup.cfg | 1 + src/yen/github.py | 25 +- src/yen/linux_i686_release.json | 16814 ++++++++++++++++++++++++++++++ 3 files changed, 16836 insertions(+), 4 deletions(-) create mode 100644 src/yen/linux_i686_release.json diff --git a/setup.cfg b/setup.cfg index 6dae5f7..a25d456 100644 --- a/setup.cfg +++ b/setup.cfg @@ -50,6 +50,7 @@ yen = py.typed activate.sh fallback_release_data.json + linux_i686_release.json [tool:pytest] addopts = --cov --cov-report=term-missing diff --git a/src/yen/github.py b/src/yen/github.py index 2819e77..107e45a 100644 --- a/src/yen/github.py +++ b/src/yen/github.py @@ -10,6 +10,8 @@ import urllib.parse from urllib.request import urlopen +LAST_TAG_FOR_I686_LINUX = "118809599" # tag name: "20230826" + MACHINE_SUFFIX = { "Darwin": { "arm64": ["aarch64-apple-darwin-install_only.tar.gz"], @@ -27,8 +29,15 @@ ], "musl": ["x86_64_v3-unknown-linux-musl-install_only.tar.gz"], }, + "i686": { + "glibc": ["i686-unknown-linux-gnu-install_only.tar.gz"], + # musl doesn't exist + }, + }, + "Windows": { + "AMD64": ["x86_64-pc-windows-msvc-shared-install_only.tar.gz"], + "i686": ["i686-pc-windows-msvc-install_only.tar.gz"], }, - "Windows": {"AMD64": ["x86_64-pc-windows-msvc-shared-install_only.tar.gz"]}, } GITHUB_API_RELEASES_URL = ( @@ -52,8 +61,14 @@ class NotAvailable(Exception): """Raised when the asked Python version is not available.""" -def get_latest_python_releases() -> list[str]: +def get_latest_python_releases(is_linux_i686: bool) -> list[Any]: """Returns the list of python download links from the latest github release.""" + # They stopped shipping for 32 bit linux since after the 20230826 tag + if is_linux_i686: + data_file = os.path.join(os.path.dirname(__file__), "linux_i686_release.json") + with open(data_file) as data: + release_data = json.load(data) + latest_release_url = urllib.parse.urljoin(GITHUB_API_RELEASES_URL, "latest") try: with urlopen(latest_release_url) as response: @@ -62,7 +77,7 @@ def get_latest_python_releases() -> list[str]: except urllib.error.URLError: release_data = fallback_release_data() - return [asset["browser_download_url"] for asset in release_data["assets"]] + return release_data def list_pythons() -> dict[str, str]: @@ -75,7 +90,9 @@ def list_pythons() -> dict[str, str]: libc_version = platform.libc_ver()[0] or "musl" download_link_suffixes = download_link_suffixes[libc_version] - python_releases = get_latest_python_releases() + is_linux_i686 = system == "Linux" and machine == "i686" + releases = get_latest_python_releases(is_linux_i686) + python_releases = [asset["browser_download_url"] for asset in releases["assets"]] available_python_links = [ link diff --git a/src/yen/linux_i686_release.json b/src/yen/linux_i686_release.json new file mode 100644 index 0000000..232bb98 --- /dev/null +++ b/src/yen/linux_i686_release.json @@ -0,0 +1,16814 @@ +{ + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599", + "assets_url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599/assets", + "upload_url": "https://uploads.github.com/repos/indygreg/python-build-standalone/releases/118809599/assets{?name,label}", + "html_url": "https://github.com/indygreg/python-build-standalone/releases/tag/20230826", + "id": 118809599, + "author": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOCa0F0M4HFOP_", + "tag_name": "20230826", + "target_commitish": "main", + "name": "20230826", + "draft": false, + "prerelease": false, + "created_at": "2023-08-26T05:10:26Z", + "published_at": "2023-08-26T14:58:21Z", + "assets": [ + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232985", + "id": 123232985, + "node_id": "RA_kwDOCa0F0M4HWGLZ", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 22276708, + "download_count": 25, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232982", + "id": 123232982, + "node_id": "RA_kwDOCa0F0M4HWGLW", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232986", + "id": 123232986, + "node_id": "RA_kwDOCa0F0M4HWGLa", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 16830300, + "download_count": 1118, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232984", + "id": 123232984, + "node_id": "RA_kwDOCa0F0M4HWGLY", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232983", + "id": 123232983, + "node_id": "RA_kwDOCa0F0M4HWGLX", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31559795, + "download_count": 11, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232981", + "id": 123232981, + "node_id": "RA_kwDOCa0F0M4HWGLV", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:37:55Z", + "updated_at": "2023-08-26T15:37:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232989", + "id": 123232989, + "node_id": "RA_kwDOCa0F0M4HWGLd", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32981010, + "download_count": 175, + "created_at": "2023-08-26T15:37:56Z", + "updated_at": "2023-08-26T15:37:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232990", + "id": 123232990, + "node_id": "RA_kwDOCa0F0M4HWGLe", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 43, + "created_at": "2023-08-26T15:37:56Z", + "updated_at": "2023-08-26T15:37:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232991", + "id": 123232991, + "node_id": "RA_kwDOCa0F0M4HWGLf", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24222560, + "download_count": 8, + "created_at": "2023-08-26T15:37:56Z", + "updated_at": "2023-08-26T15:38:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232992", + "id": 123232992, + "node_id": "RA_kwDOCa0F0M4HWGLg", + "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:37:56Z", + "updated_at": "2023-08-26T15:37:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232993", + "id": 123232993, + "node_id": "RA_kwDOCa0F0M4HWGLh", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32540213, + "download_count": 19, + "created_at": "2023-08-26T15:37:57Z", + "updated_at": "2023-08-26T15:37:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232994", + "id": 123232994, + "node_id": "RA_kwDOCa0F0M4HWGLi", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 17, + "created_at": "2023-08-26T15:37:57Z", + "updated_at": "2023-08-26T15:37:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232995", + "id": 123232995, + "node_id": "RA_kwDOCa0F0M4HWGLj", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23980115, + "download_count": 1649, + "created_at": "2023-08-26T15:37:58Z", + "updated_at": "2023-08-26T15:37:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232996", + "id": 123232996, + "node_id": "RA_kwDOCa0F0M4HWGLk", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 17, + "created_at": "2023-08-26T15:37:58Z", + "updated_at": "2023-08-26T15:37:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232999", + "id": 123232999, + "node_id": "RA_kwDOCa0F0M4HWGLn", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 105826005, + "download_count": 42, + "created_at": "2023-08-26T15:37:59Z", + "updated_at": "2023-08-26T15:38:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233000", + "id": 123233000, + "node_id": "RA_kwDOCa0F0M4HWGLo", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 23, + "created_at": "2023-08-26T15:37:59Z", + "updated_at": "2023-08-26T15:37:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233001", + "id": 123233001, + "node_id": "RA_kwDOCa0F0M4HWGLp", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32643489, + "download_count": 9, + "created_at": "2023-08-26T15:37:59Z", + "updated_at": "2023-08-26T15:38:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233002", + "id": 123233002, + "node_id": "RA_kwDOCa0F0M4HWGLq", + "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:37:59Z", + "updated_at": "2023-08-26T15:37:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233003", + "id": 123233003, + "node_id": "RA_kwDOCa0F0M4HWGLr", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35216138, + "download_count": 9, + "created_at": "2023-08-26T15:37:59Z", + "updated_at": "2023-08-26T15:38:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233004", + "id": 123233004, + "node_id": "RA_kwDOCa0F0M4HWGLs", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:00Z", + "updated_at": "2023-08-26T15:38:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233005", + "id": 123233005, + "node_id": "RA_kwDOCa0F0M4HWGLt", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34164735, + "download_count": 9, + "created_at": "2023-08-26T15:38:00Z", + "updated_at": "2023-08-26T15:38:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233006", + "id": 123233006, + "node_id": "RA_kwDOCa0F0M4HWGLu", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 32, + "created_at": "2023-08-26T15:38:00Z", + "updated_at": "2023-08-26T15:38:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233007", + "id": 123233007, + "node_id": "RA_kwDOCa0F0M4HWGLv", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39285677, + "download_count": 11, + "created_at": "2023-08-26T15:38:01Z", + "updated_at": "2023-08-26T15:38:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233008", + "id": 123233008, + "node_id": "RA_kwDOCa0F0M4HWGLw", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:01Z", + "updated_at": "2023-08-26T15:38:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233010", + "id": 123233010, + "node_id": "RA_kwDOCa0F0M4HWGLy", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34808262, + "download_count": 8, + "created_at": "2023-08-26T15:38:01Z", + "updated_at": "2023-08-26T15:38:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233009", + "id": 123233009, + "node_id": "RA_kwDOCa0F0M4HWGLx", + "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:01Z", + "updated_at": "2023-08-26T15:38:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233011", + "id": 123233011, + "node_id": "RA_kwDOCa0F0M4HWGLz", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26063900, + "download_count": 17, + "created_at": "2023-08-26T15:38:02Z", + "updated_at": "2023-08-26T15:38:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233012", + "id": 123233012, + "node_id": "RA_kwDOCa0F0M4HWGL0", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 37, + "created_at": "2023-08-26T15:38:02Z", + "updated_at": "2023-08-26T15:38:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233013", + "id": 123233013, + "node_id": "RA_kwDOCa0F0M4HWGL1", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26338042, + "download_count": 25, + "created_at": "2023-08-26T15:38:03Z", + "updated_at": "2023-08-26T15:38:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233014", + "id": 123233014, + "node_id": "RA_kwDOCa0F0M4HWGL2", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:38:03Z", + "updated_at": "2023-08-26T15:38:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233015", + "id": 123233015, + "node_id": "RA_kwDOCa0F0M4HWGL3", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40246601, + "download_count": 7, + "created_at": "2023-08-26T15:38:03Z", + "updated_at": "2023-08-26T15:38:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233016", + "id": 123233016, + "node_id": "RA_kwDOCa0F0M4HWGL4", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:04Z", + "updated_at": "2023-08-26T15:38:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233021", + "id": 123233021, + "node_id": "RA_kwDOCa0F0M4HWGL9", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41855454, + "download_count": 13, + "created_at": "2023-08-26T15:38:05Z", + "updated_at": "2023-08-26T15:38:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233020", + "id": 123233020, + "node_id": "RA_kwDOCa0F0M4HWGL8", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 94, + "created_at": "2023-08-26T15:38:05Z", + "updated_at": "2023-08-26T15:38:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233022", + "id": 123233022, + "node_id": "RA_kwDOCa0F0M4HWGL-", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28082329, + "download_count": 7, + "created_at": "2023-08-26T15:38:05Z", + "updated_at": "2023-08-26T15:38:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233023", + "id": 123233023, + "node_id": "RA_kwDOCa0F0M4HWGL_", + "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:05Z", + "updated_at": "2023-08-26T15:38:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233024", + "id": 123233024, + "node_id": "RA_kwDOCa0F0M4HWGMA", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 33740270, + "download_count": 6, + "created_at": "2023-08-26T15:38:05Z", + "updated_at": "2023-08-26T15:38:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233025", + "id": 123233025, + "node_id": "RA_kwDOCa0F0M4HWGMB", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:06Z", + "updated_at": "2023-08-26T15:38:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233026", + "id": 123233026, + "node_id": "RA_kwDOCa0F0M4HWGMC", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24790386, + "download_count": 908, + "created_at": "2023-08-26T15:38:06Z", + "updated_at": "2023-08-26T15:38:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233027", + "id": 123233027, + "node_id": "RA_kwDOCa0F0M4HWGMD", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:06Z", + "updated_at": "2023-08-26T15:38:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233028", + "id": 123233028, + "node_id": "RA_kwDOCa0F0M4HWGME", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 118324649, + "download_count": 6, + "created_at": "2023-08-26T15:38:07Z", + "updated_at": "2023-08-26T15:38:11Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233030", + "id": 123233030, + "node_id": "RA_kwDOCa0F0M4HWGMG", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:07Z", + "updated_at": "2023-08-26T15:38:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233032", + "id": 123233032, + "node_id": "RA_kwDOCa0F0M4HWGMI", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 33843944, + "download_count": 6, + "created_at": "2023-08-26T15:38:07Z", + "updated_at": "2023-08-26T15:38:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233033", + "id": 123233033, + "node_id": "RA_kwDOCa0F0M4HWGMJ", + "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:07Z", + "updated_at": "2023-08-26T15:38:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233034", + "id": 123233034, + "node_id": "RA_kwDOCa0F0M4HWGMK", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34716504, + "download_count": 7, + "created_at": "2023-08-26T15:38:07Z", + "updated_at": "2023-08-26T15:38:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233035", + "id": 123233035, + "node_id": "RA_kwDOCa0F0M4HWGML", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:08Z", + "updated_at": "2023-08-26T15:38:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233036", + "id": 123233036, + "node_id": "RA_kwDOCa0F0M4HWGMM", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25300366, + "download_count": 914, + "created_at": "2023-08-26T15:38:08Z", + "updated_at": "2023-08-26T15:38:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233037", + "id": 123233037, + "node_id": "RA_kwDOCa0F0M4HWGMN", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:10Z", + "updated_at": "2023-08-26T15:38:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233038", + "id": 123233038, + "node_id": "RA_kwDOCa0F0M4HWGMO", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 125637131, + "download_count": 6, + "created_at": "2023-08-26T15:38:10Z", + "updated_at": "2023-08-26T15:38:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233039", + "id": 123233039, + "node_id": "RA_kwDOCa0F0M4HWGMP", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:10Z", + "updated_at": "2023-08-26T15:38:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233040", + "id": 123233040, + "node_id": "RA_kwDOCa0F0M4HWGMQ", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35202906, + "download_count": 6, + "created_at": "2023-08-26T15:38:10Z", + "updated_at": "2023-08-26T15:38:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233044", + "id": 123233044, + "node_id": "RA_kwDOCa0F0M4HWGMU", + "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:10Z", + "updated_at": "2023-08-26T15:38:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233045", + "id": 123233045, + "node_id": "RA_kwDOCa0F0M4HWGMV", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 22335558, + "download_count": 6, + "created_at": "2023-08-26T15:38:11Z", + "updated_at": "2023-08-26T15:38:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233047", + "id": 123233047, + "node_id": "RA_kwDOCa0F0M4HWGMX", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:12Z", + "updated_at": "2023-08-26T15:38:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233048", + "id": 123233048, + "node_id": "RA_kwDOCa0F0M4HWGMY", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 17103383, + "download_count": 1619, + "created_at": "2023-08-26T15:38:12Z", + "updated_at": "2023-08-26T15:38:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233049", + "id": 123233049, + "node_id": "RA_kwDOCa0F0M4HWGMZ", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:12Z", + "updated_at": "2023-08-26T15:38:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233050", + "id": 123233050, + "node_id": "RA_kwDOCa0F0M4HWGMa", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31571409, + "download_count": 8, + "created_at": "2023-08-26T15:38:12Z", + "updated_at": "2023-08-26T15:38:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233051", + "id": 123233051, + "node_id": "RA_kwDOCa0F0M4HWGMb", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:13Z", + "updated_at": "2023-08-26T15:38:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233052", + "id": 123233052, + "node_id": "RA_kwDOCa0F0M4HWGMc", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32836826, + "download_count": 77, + "created_at": "2023-08-26T15:38:13Z", + "updated_at": "2023-08-26T15:38:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233056", + "id": 123233056, + "node_id": "RA_kwDOCa0F0M4HWGMg", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:14Z", + "updated_at": "2023-08-26T15:38:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233057", + "id": 123233057, + "node_id": "RA_kwDOCa0F0M4HWGMh", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23783575, + "download_count": 6, + "created_at": "2023-08-26T15:38:14Z", + "updated_at": "2023-08-26T15:38:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233058", + "id": 123233058, + "node_id": "RA_kwDOCa0F0M4HWGMi", + "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:14Z", + "updated_at": "2023-08-26T15:38:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233059", + "id": 123233059, + "node_id": "RA_kwDOCa0F0M4HWGMj", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36049830, + "download_count": 2939, + "created_at": "2023-08-26T15:38:15Z", + "updated_at": "2023-08-26T15:38:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233060", + "id": 123233060, + "node_id": "RA_kwDOCa0F0M4HWGMk", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 247, + "created_at": "2023-08-26T15:38:15Z", + "updated_at": "2023-08-26T15:38:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233061", + "id": 123233061, + "node_id": "RA_kwDOCa0F0M4HWGMl", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34780168, + "download_count": 139, + "created_at": "2023-08-26T15:38:15Z", + "updated_at": "2023-08-26T15:38:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233063", + "id": 123233063, + "node_id": "RA_kwDOCa0F0M4HWGMn", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 38, + "created_at": "2023-08-26T15:38:16Z", + "updated_at": "2023-08-26T15:38:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233064", + "id": 123233064, + "node_id": "RA_kwDOCa0F0M4HWGMo", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40640417, + "download_count": 40, + "created_at": "2023-08-26T15:38:16Z", + "updated_at": "2023-08-26T15:38:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233066", + "id": 123233066, + "node_id": "RA_kwDOCa0F0M4HWGMq", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:16Z", + "updated_at": "2023-08-26T15:38:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233067", + "id": 123233067, + "node_id": "RA_kwDOCa0F0M4HWGMr", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37966241, + "download_count": 10, + "created_at": "2023-08-26T15:38:16Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233068", + "id": 123233068, + "node_id": "RA_kwDOCa0F0M4HWGMs", + "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:16Z", + "updated_at": "2023-08-26T15:38:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233069", + "id": 123233069, + "node_id": "RA_kwDOCa0F0M4HWGMt", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25584050, + "download_count": 10, + "created_at": "2023-08-26T15:38:17Z", + "updated_at": "2023-08-26T15:38:19Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233070", + "id": 123233070, + "node_id": "RA_kwDOCa0F0M4HWGMu", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:17Z", + "updated_at": "2023-08-26T15:38:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233071", + "id": 123233071, + "node_id": "RA_kwDOCa0F0M4HWGMv", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26421821, + "download_count": 6741, + "created_at": "2023-08-26T15:38:17Z", + "updated_at": "2023-08-26T15:38:19Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233073", + "id": 123233073, + "node_id": "RA_kwDOCa0F0M4HWGMx", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:18Z", + "updated_at": "2023-08-26T15:38:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233074", + "id": 123233074, + "node_id": "RA_kwDOCa0F0M4HWGMy", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40194149, + "download_count": 22, + "created_at": "2023-08-26T15:38:18Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233075", + "id": 123233075, + "node_id": "RA_kwDOCa0F0M4HWGMz", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:18Z", + "updated_at": "2023-08-26T15:38:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233078", + "id": 123233078, + "node_id": "RA_kwDOCa0F0M4HWGM2", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41942703, + "download_count": 1747, + "created_at": "2023-08-26T15:38:18Z", + "updated_at": "2023-08-26T15:38:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233080", + "id": 123233080, + "node_id": "RA_kwDOCa0F0M4HWGM4", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 43, + "created_at": "2023-08-26T15:38:18Z", + "updated_at": "2023-08-26T15:38:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233081", + "id": 123233081, + "node_id": "RA_kwDOCa0F0M4HWGM5", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28211638, + "download_count": 13, + "created_at": "2023-08-26T15:38:19Z", + "updated_at": "2023-08-26T15:38:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233082", + "id": 123233082, + "node_id": "RA_kwDOCa0F0M4HWGM6", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:19Z", + "updated_at": "2023-08-26T15:38:19Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233083", + "id": 123233083, + "node_id": "RA_kwDOCa0F0M4HWGM7", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24829112, + "download_count": 9, + "created_at": "2023-08-26T15:38:19Z", + "updated_at": "2023-08-26T15:38:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233085", + "id": 123233085, + "node_id": "RA_kwDOCa0F0M4HWGM9", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:19Z", + "updated_at": "2023-08-26T15:38:19Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233086", + "id": 123233086, + "node_id": "RA_kwDOCa0F0M4HWGM-", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24773404, + "download_count": 81, + "created_at": "2023-08-26T15:38:20Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233087", + "id": 123233087, + "node_id": "RA_kwDOCa0F0M4HWGM_", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:20Z", + "updated_at": "2023-08-26T15:38:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233088", + "id": 123233088, + "node_id": "RA_kwDOCa0F0M4HWGNA", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39033265, + "download_count": 12, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233089", + "id": 123233089, + "node_id": "RA_kwDOCa0F0M4HWGNB", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 18, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233090", + "id": 123233090, + "node_id": "RA_kwDOCa0F0M4HWGNC", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26912069, + "download_count": 10, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233091", + "id": 123233091, + "node_id": "RA_kwDOCa0F0M4HWGND", + "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233092", + "id": 123233092, + "node_id": "RA_kwDOCa0F0M4HWGNE", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25544940, + "download_count": 6, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233093", + "id": 123233093, + "node_id": "RA_kwDOCa0F0M4HWGNF", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:21Z", + "updated_at": "2023-08-26T15:38:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233094", + "id": 123233094, + "node_id": "RA_kwDOCa0F0M4HWGNG", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26336887, + "download_count": 274, + "created_at": "2023-08-26T15:38:22Z", + "updated_at": "2023-08-26T15:38:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233095", + "id": 123233095, + "node_id": "RA_kwDOCa0F0M4HWGNH", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:22Z", + "updated_at": "2023-08-26T15:38:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233096", + "id": 123233096, + "node_id": "RA_kwDOCa0F0M4HWGNI", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40115591, + "download_count": 7, + "created_at": "2023-08-26T15:38:22Z", + "updated_at": "2023-08-26T15:38:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233097", + "id": 123233097, + "node_id": "RA_kwDOCa0F0M4HWGNJ", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:22Z", + "updated_at": "2023-08-26T15:38:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233098", + "id": 123233098, + "node_id": "RA_kwDOCa0F0M4HWGNK", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41854039, + "download_count": 7, + "created_at": "2023-08-26T15:38:23Z", + "updated_at": "2023-08-26T15:38:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233099", + "id": 123233099, + "node_id": "RA_kwDOCa0F0M4HWGNL", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:38:23Z", + "updated_at": "2023-08-26T15:38:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233100", + "id": 123233100, + "node_id": "RA_kwDOCa0F0M4HWGNM", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28174103, + "download_count": 7, + "created_at": "2023-08-26T15:38:23Z", + "updated_at": "2023-08-26T15:38:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233102", + "id": 123233102, + "node_id": "RA_kwDOCa0F0M4HWGNO", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 21, + "created_at": "2023-08-26T15:38:23Z", + "updated_at": "2023-08-26T15:38:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233104", + "id": 123233104, + "node_id": "RA_kwDOCa0F0M4HWGNQ", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24836496, + "download_count": 6, + "created_at": "2023-08-26T15:38:24Z", + "updated_at": "2023-08-26T15:38:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233105", + "id": 123233105, + "node_id": "RA_kwDOCa0F0M4HWGNR", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:24Z", + "updated_at": "2023-08-26T15:38:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233106", + "id": 123233106, + "node_id": "RA_kwDOCa0F0M4HWGNS", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24745749, + "download_count": 6, + "created_at": "2023-08-26T15:38:24Z", + "updated_at": "2023-08-26T15:38:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233107", + "id": 123233107, + "node_id": "RA_kwDOCa0F0M4HWGNT", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:25Z", + "updated_at": "2023-08-26T15:38:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233108", + "id": 123233108, + "node_id": "RA_kwDOCa0F0M4HWGNU", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38974404, + "download_count": 8, + "created_at": "2023-08-26T15:38:25Z", + "updated_at": "2023-08-26T15:38:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233109", + "id": 123233109, + "node_id": "RA_kwDOCa0F0M4HWGNV", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:25Z", + "updated_at": "2023-08-26T15:38:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233110", + "id": 123233110, + "node_id": "RA_kwDOCa0F0M4HWGNW", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26894563, + "download_count": 7, + "created_at": "2023-08-26T15:38:26Z", + "updated_at": "2023-08-26T15:38:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233111", + "id": 123233111, + "node_id": "RA_kwDOCa0F0M4HWGNX", + "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:26Z", + "updated_at": "2023-08-26T15:38:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233112", + "id": 123233112, + "node_id": "RA_kwDOCa0F0M4HWGNY", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25567798, + "download_count": 7, + "created_at": "2023-08-26T15:38:26Z", + "updated_at": "2023-08-26T15:38:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233113", + "id": 123233113, + "node_id": "RA_kwDOCa0F0M4HWGNZ", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:27Z", + "updated_at": "2023-08-26T15:38:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233114", + "id": 123233114, + "node_id": "RA_kwDOCa0F0M4HWGNa", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26369879, + "download_count": 2772, + "created_at": "2023-08-26T15:38:27Z", + "updated_at": "2023-08-26T15:38:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233116", + "id": 123233116, + "node_id": "RA_kwDOCa0F0M4HWGNc", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233117", + "id": 123233117, + "node_id": "RA_kwDOCa0F0M4HWGNd", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40310888, + "download_count": 7, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233118", + "id": 123233118, + "node_id": "RA_kwDOCa0F0M4HWGNe", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233119", + "id": 123233119, + "node_id": "RA_kwDOCa0F0M4HWGNf", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41880438, + "download_count": 15, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233120", + "id": 123233120, + "node_id": "RA_kwDOCa0F0M4HWGNg", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 21, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233121", + "id": 123233121, + "node_id": "RA_kwDOCa0F0M4HWGNh", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28203815, + "download_count": 6, + "created_at": "2023-08-26T15:38:28Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233122", + "id": 123233122, + "node_id": "RA_kwDOCa0F0M4HWGNi", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 21, + "created_at": "2023-08-26T15:38:29Z", + "updated_at": "2023-08-26T15:38:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233123", + "id": 123233123, + "node_id": "RA_kwDOCa0F0M4HWGNj", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24867079, + "download_count": 6, + "created_at": "2023-08-26T15:38:29Z", + "updated_at": "2023-08-26T15:38:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233124", + "id": 123233124, + "node_id": "RA_kwDOCa0F0M4HWGNk", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:29Z", + "updated_at": "2023-08-26T15:38:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233125", + "id": 123233125, + "node_id": "RA_kwDOCa0F0M4HWGNl", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24843541, + "download_count": 85, + "created_at": "2023-08-26T15:38:30Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233128", + "id": 123233128, + "node_id": "RA_kwDOCa0F0M4HWGNo", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:30Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233129", + "id": 123233129, + "node_id": "RA_kwDOCa0F0M4HWGNp", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39183904, + "download_count": 7, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233130", + "id": 123233130, + "node_id": "RA_kwDOCa0F0M4HWGNq", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233131", + "id": 123233131, + "node_id": "RA_kwDOCa0F0M4HWGNr", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26958526, + "download_count": 7, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233132", + "id": 123233132, + "node_id": "RA_kwDOCa0F0M4HWGNs", + "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233134", + "id": 123233134, + "node_id": "RA_kwDOCa0F0M4HWGNu", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25564198, + "download_count": 6, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233135", + "id": 123233135, + "node_id": "RA_kwDOCa0F0M4HWGNv", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233136", + "id": 123233136, + "node_id": "RA_kwDOCa0F0M4HWGNw", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25682144, + "download_count": 17, + "created_at": "2023-08-26T15:38:31Z", + "updated_at": "2023-08-26T15:38:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233137", + "id": 123233137, + "node_id": "RA_kwDOCa0F0M4HWGNx", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:32Z", + "updated_at": "2023-08-26T15:38:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233138", + "id": 123233138, + "node_id": "RA_kwDOCa0F0M4HWGNy", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40314780, + "download_count": 7, + "created_at": "2023-08-26T15:38:32Z", + "updated_at": "2023-08-26T15:38:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233139", + "id": 123233139, + "node_id": "RA_kwDOCa0F0M4HWGNz", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:32Z", + "updated_at": "2023-08-26T15:38:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233140", + "id": 123233140, + "node_id": "RA_kwDOCa0F0M4HWGN0", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27625389, + "download_count": 6, + "created_at": "2023-08-26T15:38:32Z", + "updated_at": "2023-08-26T15:38:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233142", + "id": 123233142, + "node_id": "RA_kwDOCa0F0M4HWGN2", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233141", + "id": 123233141, + "node_id": "RA_kwDOCa0F0M4HWGN1", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24869730, + "download_count": 6, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233143", + "id": 123233143, + "node_id": "RA_kwDOCa0F0M4HWGN3", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233144", + "id": 123233144, + "node_id": "RA_kwDOCa0F0M4HWGN4", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24845118, + "download_count": 7, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233145", + "id": 123233145, + "node_id": "RA_kwDOCa0F0M4HWGN5", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233146", + "id": 123233146, + "node_id": "RA_kwDOCa0F0M4HWGN6", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39158546, + "download_count": 6, + "created_at": "2023-08-26T15:38:33Z", + "updated_at": "2023-08-26T15:38:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233147", + "id": 123233147, + "node_id": "RA_kwDOCa0F0M4HWGN7", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:34Z", + "updated_at": "2023-08-26T15:38:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233148", + "id": 123233148, + "node_id": "RA_kwDOCa0F0M4HWGN8", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26965645, + "download_count": 6, + "created_at": "2023-08-26T15:38:34Z", + "updated_at": "2023-08-26T15:38:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233149", + "id": 123233149, + "node_id": "RA_kwDOCa0F0M4HWGN9", + "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:34Z", + "updated_at": "2023-08-26T15:38:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233150", + "id": 123233150, + "node_id": "RA_kwDOCa0F0M4HWGN-", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27005019, + "download_count": 10, + "created_at": "2023-08-26T15:38:34Z", + "updated_at": "2023-08-26T15:38:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233151", + "id": 123233151, + "node_id": "RA_kwDOCa0F0M4HWGN_", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:35Z", + "updated_at": "2023-08-26T15:38:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233152", + "id": 123233152, + "node_id": "RA_kwDOCa0F0M4HWGOA", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 17379941, + "download_count": 16037, + "created_at": "2023-08-26T15:38:35Z", + "updated_at": "2023-08-26T15:38:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233153", + "id": 123233153, + "node_id": "RA_kwDOCa0F0M4HWGOB", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 39, + "created_at": "2023-08-26T15:38:35Z", + "updated_at": "2023-08-26T15:38:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233154", + "id": 123233154, + "node_id": "RA_kwDOCa0F0M4HWGOC", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34770182, + "download_count": 8, + "created_at": "2023-08-26T15:38:35Z", + "updated_at": "2023-08-26T15:38:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233155", + "id": 123233155, + "node_id": "RA_kwDOCa0F0M4HWGOD", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:35Z", + "updated_at": "2023-08-26T15:38:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233156", + "id": 123233156, + "node_id": "RA_kwDOCa0F0M4HWGOE", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36339419, + "download_count": 961, + "created_at": "2023-08-26T15:38:36Z", + "updated_at": "2023-08-26T15:38:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233157", + "id": 123233157, + "node_id": "RA_kwDOCa0F0M4HWGOF", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 127, + "created_at": "2023-08-26T15:38:36Z", + "updated_at": "2023-08-26T15:38:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233158", + "id": 123233158, + "node_id": "RA_kwDOCa0F0M4HWGOG", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25826916, + "download_count": 6, + "created_at": "2023-08-26T15:38:36Z", + "updated_at": "2023-08-26T15:38:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233159", + "id": 123233159, + "node_id": "RA_kwDOCa0F0M4HWGOH", + "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:36Z", + "updated_at": "2023-08-26T15:38:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233160", + "id": 123233160, + "node_id": "RA_kwDOCa0F0M4HWGOI", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36822890, + "download_count": 14, + "created_at": "2023-08-26T15:38:37Z", + "updated_at": "2023-08-26T15:38:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233161", + "id": 123233161, + "node_id": "RA_kwDOCa0F0M4HWGOJ", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:37Z", + "updated_at": "2023-08-26T15:38:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233162", + "id": 123233162, + "node_id": "RA_kwDOCa0F0M4HWGOK", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25085307, + "download_count": 398, + "created_at": "2023-08-26T15:38:37Z", + "updated_at": "2023-08-26T15:38:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233163", + "id": 123233163, + "node_id": "RA_kwDOCa0F0M4HWGOL", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 38, + "created_at": "2023-08-26T15:38:37Z", + "updated_at": "2023-08-26T15:38:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233164", + "id": 123233164, + "node_id": "RA_kwDOCa0F0M4HWGOM", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 139812168, + "download_count": 2946, + "created_at": "2023-08-26T15:38:38Z", + "updated_at": "2023-08-26T15:38:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233165", + "id": 123233165, + "node_id": "RA_kwDOCa0F0M4HWGON", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 85, + "created_at": "2023-08-26T15:38:38Z", + "updated_at": "2023-08-26T15:38:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233166", + "id": 123233166, + "node_id": "RA_kwDOCa0F0M4HWGOO", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36676400, + "download_count": 11, + "created_at": "2023-08-26T15:38:38Z", + "updated_at": "2023-08-26T15:38:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233167", + "id": 123233167, + "node_id": "RA_kwDOCa0F0M4HWGOP", + "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:38Z", + "updated_at": "2023-08-26T15:38:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233168", + "id": 123233168, + "node_id": "RA_kwDOCa0F0M4HWGOQ", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38310546, + "download_count": 23, + "created_at": "2023-08-26T15:38:38Z", + "updated_at": "2023-08-26T15:38:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233169", + "id": 123233169, + "node_id": "RA_kwDOCa0F0M4HWGOR", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:39Z", + "updated_at": "2023-08-26T15:38:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233170", + "id": 123233170, + "node_id": "RA_kwDOCa0F0M4HWGOS", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38013096, + "download_count": 28, + "created_at": "2023-08-26T15:38:39Z", + "updated_at": "2023-08-26T15:38:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233171", + "id": 123233171, + "node_id": "RA_kwDOCa0F0M4HWGOT", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 118, + "created_at": "2023-08-26T15:38:39Z", + "updated_at": "2023-08-26T15:38:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233172", + "id": 123233172, + "node_id": "RA_kwDOCa0F0M4HWGOU", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 42947637, + "download_count": 10, + "created_at": "2023-08-26T15:38:40Z", + "updated_at": "2023-08-26T15:38:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233178", + "id": 123233178, + "node_id": "RA_kwDOCa0F0M4HWGOa", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:41Z", + "updated_at": "2023-08-26T15:38:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233176", + "id": 123233176, + "node_id": "RA_kwDOCa0F0M4HWGOY", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37608075, + "download_count": 9, + "created_at": "2023-08-26T15:38:40Z", + "updated_at": "2023-08-26T15:38:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233177", + "id": 123233177, + "node_id": "RA_kwDOCa0F0M4HWGOZ", + "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:41Z", + "updated_at": "2023-08-26T15:38:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233179", + "id": 123233179, + "node_id": "RA_kwDOCa0F0M4HWGOb", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30738608, + "download_count": 28, + "created_at": "2023-08-26T15:38:41Z", + "updated_at": "2023-08-26T15:38:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233181", + "id": 123233181, + "node_id": "RA_kwDOCa0F0M4HWGOd", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:42Z", + "updated_at": "2023-08-26T15:38:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233183", + "id": 123233183, + "node_id": "RA_kwDOCa0F0M4HWGOf", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28643224, + "download_count": 44, + "created_at": "2023-08-26T15:38:42Z", + "updated_at": "2023-08-26T15:38:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233184", + "id": 123233184, + "node_id": "RA_kwDOCa0F0M4HWGOg", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:42Z", + "updated_at": "2023-08-26T15:38:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233185", + "id": 123233185, + "node_id": "RA_kwDOCa0F0M4HWGOh", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 47803069, + "download_count": 7, + "created_at": "2023-08-26T15:38:42Z", + "updated_at": "2023-08-26T15:38:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233187", + "id": 123233187, + "node_id": "RA_kwDOCa0F0M4HWGOj", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:42Z", + "updated_at": "2023-08-26T15:38:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233189", + "id": 123233189, + "node_id": "RA_kwDOCa0F0M4HWGOl", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 52438113, + "download_count": 12, + "created_at": "2023-08-26T15:38:43Z", + "updated_at": "2023-08-26T15:38:46Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233190", + "id": 123233190, + "node_id": "RA_kwDOCa0F0M4HWGOm", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 95, + "created_at": "2023-08-26T15:38:43Z", + "updated_at": "2023-08-26T15:38:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233191", + "id": 123233191, + "node_id": "RA_kwDOCa0F0M4HWGOn", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 29960805, + "download_count": 7, + "created_at": "2023-08-26T15:38:43Z", + "updated_at": "2023-08-26T15:38:46Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233192", + "id": 123233192, + "node_id": "RA_kwDOCa0F0M4HWGOo", + "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:44Z", + "updated_at": "2023-08-26T15:38:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233194", + "id": 123233194, + "node_id": "RA_kwDOCa0F0M4HWGOq", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41194070, + "download_count": 14, + "created_at": "2023-08-26T15:38:44Z", + "updated_at": "2023-08-26T15:38:46Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233195", + "id": 123233195, + "node_id": "RA_kwDOCa0F0M4HWGOr", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:38:45Z", + "updated_at": "2023-08-26T15:38:45Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233196", + "id": 123233196, + "node_id": "RA_kwDOCa0F0M4HWGOs", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25896858, + "download_count": 118, + "created_at": "2023-08-26T15:38:45Z", + "updated_at": "2023-08-26T15:38:46Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233197", + "id": 123233197, + "node_id": "RA_kwDOCa0F0M4HWGOt", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:45Z", + "updated_at": "2023-08-26T15:38:45Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233198", + "id": 123233198, + "node_id": "RA_kwDOCa0F0M4HWGOu", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 141223021, + "download_count": 6, + "created_at": "2023-08-26T15:38:46Z", + "updated_at": "2023-08-26T15:38:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233199", + "id": 123233199, + "node_id": "RA_kwDOCa0F0M4HWGOv", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 19, + "created_at": "2023-08-26T15:38:46Z", + "updated_at": "2023-08-26T15:38:46Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233200", + "id": 123233200, + "node_id": "RA_kwDOCa0F0M4HWGOw", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41267975, + "download_count": 6, + "created_at": "2023-08-26T15:38:46Z", + "updated_at": "2023-08-26T15:38:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233201", + "id": 123233201, + "node_id": "RA_kwDOCa0F0M4HWGOx", + "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:38:46Z", + "updated_at": "2023-08-26T15:38:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233202", + "id": 123233202, + "node_id": "RA_kwDOCa0F0M4HWGOy", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 42731864, + "download_count": 18, + "created_at": "2023-08-26T15:38:47Z", + "updated_at": "2023-08-26T15:38:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233203", + "id": 123233203, + "node_id": "RA_kwDOCa0F0M4HWGOz", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:38:47Z", + "updated_at": "2023-08-26T15:38:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233204", + "id": 123233204, + "node_id": "RA_kwDOCa0F0M4HWGO0", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26518844, + "download_count": 16, + "created_at": "2023-08-26T15:38:47Z", + "updated_at": "2023-08-26T15:38:50Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233205", + "id": 123233205, + "node_id": "RA_kwDOCa0F0M4HWGO1", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:47Z", + "updated_at": "2023-08-26T15:38:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233206", + "id": 123233206, + "node_id": "RA_kwDOCa0F0M4HWGO2", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 143211469, + "download_count": 6, + "created_at": "2023-08-26T15:38:48Z", + "updated_at": "2023-08-26T15:39:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233207", + "id": 123233207, + "node_id": "RA_kwDOCa0F0M4HWGO3", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 19, + "created_at": "2023-08-26T15:38:49Z", + "updated_at": "2023-08-26T15:38:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233208", + "id": 123233208, + "node_id": "RA_kwDOCa0F0M4HWGO4", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 43335167, + "download_count": 7, + "created_at": "2023-08-26T15:38:49Z", + "updated_at": "2023-08-26T15:38:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233209", + "id": 123233209, + "node_id": "RA_kwDOCa0F0M4HWGO5", + "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:50Z", + "updated_at": "2023-08-26T15:38:50Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233213", + "id": 123233213, + "node_id": "RA_kwDOCa0F0M4HWGO9", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26263422, + "download_count": 7, + "created_at": "2023-08-26T15:38:50Z", + "updated_at": "2023-08-26T15:38:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233215", + "id": 123233215, + "node_id": "RA_kwDOCa0F0M4HWGO_", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:51Z", + "updated_at": "2023-08-26T15:38:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233216", + "id": 123233216, + "node_id": "RA_kwDOCa0F0M4HWGPA", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 17702502, + "download_count": 17315, + "created_at": "2023-08-26T15:38:51Z", + "updated_at": "2023-08-26T15:38:52Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233217", + "id": 123233217, + "node_id": "RA_kwDOCa0F0M4HWGPB", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 40, + "created_at": "2023-08-26T15:38:51Z", + "updated_at": "2023-08-26T15:38:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233218", + "id": 123233218, + "node_id": "RA_kwDOCa0F0M4HWGPC", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34775413, + "download_count": 8, + "created_at": "2023-08-26T15:38:51Z", + "updated_at": "2023-08-26T15:38:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233219", + "id": 123233219, + "node_id": "RA_kwDOCa0F0M4HWGPD", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:52Z", + "updated_at": "2023-08-26T15:38:52Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233220", + "id": 123233220, + "node_id": "RA_kwDOCa0F0M4HWGPE", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36225406, + "download_count": 478, + "created_at": "2023-08-26T15:38:52Z", + "updated_at": "2023-08-26T15:38:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233221", + "id": 123233221, + "node_id": "RA_kwDOCa0F0M4HWGPF", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 221, + "created_at": "2023-08-26T15:38:52Z", + "updated_at": "2023-08-26T15:38:52Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233222", + "id": 123233222, + "node_id": "RA_kwDOCa0F0M4HWGPG", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25361433, + "download_count": 6, + "created_at": "2023-08-26T15:38:52Z", + "updated_at": "2023-08-26T15:38:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233223", + "id": 123233223, + "node_id": "RA_kwDOCa0F0M4HWGPH", + "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:38:52Z", + "updated_at": "2023-08-26T15:38:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233224", + "id": 123233224, + "node_id": "RA_kwDOCa0F0M4HWGPI", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39162835, + "download_count": 47986, + "created_at": "2023-08-26T15:38:53Z", + "updated_at": "2023-08-26T15:38:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233225", + "id": 123233225, + "node_id": "RA_kwDOCa0F0M4HWGPJ", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 43, + "created_at": "2023-08-26T15:38:53Z", + "updated_at": "2023-08-26T15:38:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233226", + "id": 123233226, + "node_id": "RA_kwDOCa0F0M4HWGPK", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38680239, + "download_count": 1072, + "created_at": "2023-08-26T15:38:53Z", + "updated_at": "2023-08-26T15:38:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233227", + "id": 123233227, + "node_id": "RA_kwDOCa0F0M4HWGPL", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 218, + "created_at": "2023-08-26T15:38:53Z", + "updated_at": "2023-08-26T15:38:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233228", + "id": 123233228, + "node_id": "RA_kwDOCa0F0M4HWGPM", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 44270987, + "download_count": 28, + "created_at": "2023-08-26T15:38:54Z", + "updated_at": "2023-08-26T15:38:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233229", + "id": 123233229, + "node_id": "RA_kwDOCa0F0M4HWGPN", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:54Z", + "updated_at": "2023-08-26T15:38:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233230", + "id": 123233230, + "node_id": "RA_kwDOCa0F0M4HWGPO", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40723965, + "download_count": 17, + "created_at": "2023-08-26T15:38:54Z", + "updated_at": "2023-08-26T15:38:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233231", + "id": 123233231, + "node_id": "RA_kwDOCa0F0M4HWGPP", + "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:38:54Z", + "updated_at": "2023-08-26T15:38:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233232", + "id": 123233232, + "node_id": "RA_kwDOCa0F0M4HWGPQ", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32019423, + "download_count": 168, + "created_at": "2023-08-26T15:38:55Z", + "updated_at": "2023-08-26T15:38:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233235", + "id": 123233235, + "node_id": "RA_kwDOCa0F0M4HWGPT", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 36, + "created_at": "2023-08-26T15:38:55Z", + "updated_at": "2023-08-26T15:38:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233237", + "id": 123233237, + "node_id": "RA_kwDOCa0F0M4HWGPV", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28705307, + "download_count": 41399, + "created_at": "2023-08-26T15:38:56Z", + "updated_at": "2023-08-26T15:38:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233238", + "id": 123233238, + "node_id": "RA_kwDOCa0F0M4HWGPW", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 52, + "created_at": "2023-08-26T15:38:56Z", + "updated_at": "2023-08-26T15:38:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233239", + "id": 123233239, + "node_id": "RA_kwDOCa0F0M4HWGPX", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 50859477, + "download_count": 23, + "created_at": "2023-08-26T15:38:56Z", + "updated_at": "2023-08-26T15:38:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233240", + "id": 123233240, + "node_id": "RA_kwDOCa0F0M4HWGPY", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:56Z", + "updated_at": "2023-08-26T15:38:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233243", + "id": 123233243, + "node_id": "RA_kwDOCa0F0M4HWGPb", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 53959489, + "download_count": 20084, + "created_at": "2023-08-26T15:38:57Z", + "updated_at": "2023-08-26T15:38:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233244", + "id": 123233244, + "node_id": "RA_kwDOCa0F0M4HWGPc", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 208, + "created_at": "2023-08-26T15:38:57Z", + "updated_at": "2023-08-26T15:38:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233246", + "id": 123233246, + "node_id": "RA_kwDOCa0F0M4HWGPe", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30248585, + "download_count": 15, + "created_at": "2023-08-26T15:38:57Z", + "updated_at": "2023-08-26T15:38:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233248", + "id": 123233248, + "node_id": "RA_kwDOCa0F0M4HWGPg", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 26, + "created_at": "2023-08-26T15:38:57Z", + "updated_at": "2023-08-26T15:38:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233250", + "id": 123233250, + "node_id": "RA_kwDOCa0F0M4HWGPi", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30307577, + "download_count": 6, + "created_at": "2023-08-26T15:38:57Z", + "updated_at": "2023-08-26T15:38:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233256", + "id": 123233256, + "node_id": "RA_kwDOCa0F0M4HWGPo", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:38:58Z", + "updated_at": "2023-08-26T15:38:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233261", + "id": 123233261, + "node_id": "RA_kwDOCa0F0M4HWGPt", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27079633, + "download_count": 254, + "created_at": "2023-08-26T15:38:58Z", + "updated_at": "2023-08-26T15:38:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233262", + "id": 123233262, + "node_id": "RA_kwDOCa0F0M4HWGPu", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:38:58Z", + "updated_at": "2023-08-26T15:38:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233263", + "id": 123233263, + "node_id": "RA_kwDOCa0F0M4HWGPv", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 48289546, + "download_count": 23, + "created_at": "2023-08-26T15:38:59Z", + "updated_at": "2023-08-26T15:39:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233264", + "id": 123233264, + "node_id": "RA_kwDOCa0F0M4HWGPw", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 50, + "created_at": "2023-08-26T15:38:59Z", + "updated_at": "2023-08-26T15:38:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233265", + "id": 123233265, + "node_id": "RA_kwDOCa0F0M4HWGPx", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28686507, + "download_count": 11, + "created_at": "2023-08-26T15:38:59Z", + "updated_at": "2023-08-26T15:39:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233267", + "id": 123233267, + "node_id": "RA_kwDOCa0F0M4HWGPz", + "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:39:00Z", + "updated_at": "2023-08-26T15:39:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233268", + "id": 123233268, + "node_id": "RA_kwDOCa0F0M4HWGP0", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32002161, + "download_count": 8, + "created_at": "2023-08-26T15:39:00Z", + "updated_at": "2023-08-26T15:39:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233269", + "id": 123233269, + "node_id": "RA_kwDOCa0F0M4HWGP1", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 18, + "created_at": "2023-08-26T15:39:00Z", + "updated_at": "2023-08-26T15:39:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233270", + "id": 123233270, + "node_id": "RA_kwDOCa0F0M4HWGP2", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28548356, + "download_count": 532, + "created_at": "2023-08-26T15:39:00Z", + "updated_at": "2023-08-26T15:39:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233271", + "id": 123233271, + "node_id": "RA_kwDOCa0F0M4HWGP3", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:00Z", + "updated_at": "2023-08-26T15:39:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233272", + "id": 123233272, + "node_id": "RA_kwDOCa0F0M4HWGP4", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 50771978, + "download_count": 7, + "created_at": "2023-08-26T15:39:01Z", + "updated_at": "2023-08-26T15:39:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233274", + "id": 123233274, + "node_id": "RA_kwDOCa0F0M4HWGP6", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:01Z", + "updated_at": "2023-08-26T15:39:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233273", + "id": 123233273, + "node_id": "RA_kwDOCa0F0M4HWGP5", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 53804540, + "download_count": 33, + "created_at": "2023-08-26T15:39:01Z", + "updated_at": "2023-08-26T15:39:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233276", + "id": 123233276, + "node_id": "RA_kwDOCa0F0M4HWGP8", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 28, + "created_at": "2023-08-26T15:39:01Z", + "updated_at": "2023-08-26T15:39:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233277", + "id": 123233277, + "node_id": "RA_kwDOCa0F0M4HWGP9", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30207030, + "download_count": 14, + "created_at": "2023-08-26T15:39:01Z", + "updated_at": "2023-08-26T15:39:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233278", + "id": 123233278, + "node_id": "RA_kwDOCa0F0M4HWGP-", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:39:02Z", + "updated_at": "2023-08-26T15:39:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233280", + "id": 123233280, + "node_id": "RA_kwDOCa0F0M4HWGQA", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30092125, + "download_count": 6, + "created_at": "2023-08-26T15:39:02Z", + "updated_at": "2023-08-26T15:39:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233281", + "id": 123233281, + "node_id": "RA_kwDOCa0F0M4HWGQB", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:02Z", + "updated_at": "2023-08-26T15:39:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233282", + "id": 123233282, + "node_id": "RA_kwDOCa0F0M4HWGQC", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27050345, + "download_count": 7, + "created_at": "2023-08-26T15:39:03Z", + "updated_at": "2023-08-26T15:39:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233283", + "id": 123233283, + "node_id": "RA_kwDOCa0F0M4HWGQD", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:03Z", + "updated_at": "2023-08-26T15:39:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233284", + "id": 123233284, + "node_id": "RA_kwDOCa0F0M4HWGQE", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 48256707, + "download_count": 9, + "created_at": "2023-08-26T15:39:03Z", + "updated_at": "2023-08-26T15:39:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233285", + "id": 123233285, + "node_id": "RA_kwDOCa0F0M4HWGQF", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 18, + "created_at": "2023-08-26T15:39:04Z", + "updated_at": "2023-08-26T15:39:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233286", + "id": 123233286, + "node_id": "RA_kwDOCa0F0M4HWGQG", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28674862, + "download_count": 6, + "created_at": "2023-08-26T15:39:04Z", + "updated_at": "2023-08-26T15:39:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233287", + "id": 123233287, + "node_id": "RA_kwDOCa0F0M4HWGQH", + "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:04Z", + "updated_at": "2023-08-26T15:39:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233288", + "id": 123233288, + "node_id": "RA_kwDOCa0F0M4HWGQI", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32036840, + "download_count": 7, + "created_at": "2023-08-26T15:39:05Z", + "updated_at": "2023-08-26T15:39:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233289", + "id": 123233289, + "node_id": "RA_kwDOCa0F0M4HWGQJ", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 19, + "created_at": "2023-08-26T15:39:05Z", + "updated_at": "2023-08-26T15:39:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233290", + "id": 123233290, + "node_id": "RA_kwDOCa0F0M4HWGQK", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28594336, + "download_count": 3299, + "created_at": "2023-08-26T15:39:05Z", + "updated_at": "2023-08-26T15:39:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233291", + "id": 123233291, + "node_id": "RA_kwDOCa0F0M4HWGQL", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:39:05Z", + "updated_at": "2023-08-26T15:39:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233292", + "id": 123233292, + "node_id": "RA_kwDOCa0F0M4HWGQM", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 51120656, + "download_count": 6, + "created_at": "2023-08-26T15:39:06Z", + "updated_at": "2023-08-26T15:39:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233293", + "id": 123233293, + "node_id": "RA_kwDOCa0F0M4HWGQN", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:07Z", + "updated_at": "2023-08-26T15:39:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233294", + "id": 123233294, + "node_id": "RA_kwDOCa0F0M4HWGQO", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 53864871, + "download_count": 460, + "created_at": "2023-08-26T15:39:07Z", + "updated_at": "2023-08-26T15:39:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233296", + "id": 123233296, + "node_id": "RA_kwDOCa0F0M4HWGQQ", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 30, + "created_at": "2023-08-26T15:39:07Z", + "updated_at": "2023-08-26T15:39:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233295", + "id": 123233295, + "node_id": "RA_kwDOCa0F0M4HWGQP", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30267930, + "download_count": 8, + "created_at": "2023-08-26T15:39:07Z", + "updated_at": "2023-08-26T15:39:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233298", + "id": 123233298, + "node_id": "RA_kwDOCa0F0M4HWGQS", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:39:07Z", + "updated_at": "2023-08-26T15:39:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233299", + "id": 123233299, + "node_id": "RA_kwDOCa0F0M4HWGQT", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30314542, + "download_count": 6, + "created_at": "2023-08-26T15:39:08Z", + "updated_at": "2023-08-26T15:39:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233300", + "id": 123233300, + "node_id": "RA_kwDOCa0F0M4HWGQU", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:08Z", + "updated_at": "2023-08-26T15:39:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233301", + "id": 123233301, + "node_id": "RA_kwDOCa0F0M4HWGQV", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27166067, + "download_count": 154, + "created_at": "2023-08-26T15:39:08Z", + "updated_at": "2023-08-26T15:39:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233302", + "id": 123233302, + "node_id": "RA_kwDOCa0F0M4HWGQW", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:08Z", + "updated_at": "2023-08-26T15:39:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233303", + "id": 123233303, + "node_id": "RA_kwDOCa0F0M4HWGQX", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 48983609, + "download_count": 13, + "created_at": "2023-08-26T15:39:09Z", + "updated_at": "2023-08-26T15:39:11Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233304", + "id": 123233304, + "node_id": "RA_kwDOCa0F0M4HWGQY", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 19, + "created_at": "2023-08-26T15:39:09Z", + "updated_at": "2023-08-26T15:39:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233305", + "id": 123233305, + "node_id": "RA_kwDOCa0F0M4HWGQZ", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28756555, + "download_count": 6, + "created_at": "2023-08-26T15:39:09Z", + "updated_at": "2023-08-26T15:39:11Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233306", + "id": 123233306, + "node_id": "RA_kwDOCa0F0M4HWGQa", + "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:09Z", + "updated_at": "2023-08-26T15:39:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233307", + "id": 123233307, + "node_id": "RA_kwDOCa0F0M4HWGQb", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32019130, + "download_count": 7, + "created_at": "2023-08-26T15:39:10Z", + "updated_at": "2023-08-26T15:39:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233308", + "id": 123233308, + "node_id": "RA_kwDOCa0F0M4HWGQc", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 18, + "created_at": "2023-08-26T15:39:10Z", + "updated_at": "2023-08-26T15:39:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233309", + "id": 123233309, + "node_id": "RA_kwDOCa0F0M4HWGQd", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27789640, + "download_count": 13, + "created_at": "2023-08-26T15:39:10Z", + "updated_at": "2023-08-26T15:39:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233310", + "id": 123233310, + "node_id": "RA_kwDOCa0F0M4HWGQe", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:10Z", + "updated_at": "2023-08-26T15:39:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233311", + "id": 123233311, + "node_id": "RA_kwDOCa0F0M4HWGQf", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 51139643, + "download_count": 14, + "created_at": "2023-08-26T15:39:11Z", + "updated_at": "2023-08-26T15:39:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233312", + "id": 123233312, + "node_id": "RA_kwDOCa0F0M4HWGQg", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:11Z", + "updated_at": "2023-08-26T15:39:11Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233313", + "id": 123233313, + "node_id": "RA_kwDOCa0F0M4HWGQh", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 29571598, + "download_count": 7, + "created_at": "2023-08-26T15:39:11Z", + "updated_at": "2023-08-26T15:39:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233314", + "id": 123233314, + "node_id": "RA_kwDOCa0F0M4HWGQi", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:11Z", + "updated_at": "2023-08-26T15:39:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233315", + "id": 123233315, + "node_id": "RA_kwDOCa0F0M4HWGQj", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30272096, + "download_count": 6, + "created_at": "2023-08-26T15:39:12Z", + "updated_at": "2023-08-26T15:39:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233316", + "id": 123233316, + "node_id": "RA_kwDOCa0F0M4HWGQk", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:12Z", + "updated_at": "2023-08-26T15:39:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233318", + "id": 123233318, + "node_id": "RA_kwDOCa0F0M4HWGQm", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27191330, + "download_count": 7, + "created_at": "2023-08-26T15:39:12Z", + "updated_at": "2023-08-26T15:39:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233319", + "id": 123233319, + "node_id": "RA_kwDOCa0F0M4HWGQn", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:12Z", + "updated_at": "2023-08-26T15:39:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233320", + "id": 123233320, + "node_id": "RA_kwDOCa0F0M4HWGQo", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 48995526, + "download_count": 14, + "created_at": "2023-08-26T15:39:13Z", + "updated_at": "2023-08-26T15:39:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233322", + "id": 123233322, + "node_id": "RA_kwDOCa0F0M4HWGQq", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 18, + "created_at": "2023-08-26T15:39:13Z", + "updated_at": "2023-08-26T15:39:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233321", + "id": 123233321, + "node_id": "RA_kwDOCa0F0M4HWGQp", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28782434, + "download_count": 6, + "created_at": "2023-08-26T15:39:13Z", + "updated_at": "2023-08-26T15:39:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233323", + "id": 123233323, + "node_id": "RA_kwDOCa0F0M4HWGQr", + "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:13Z", + "updated_at": "2023-08-26T15:39:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233324", + "id": 123233324, + "node_id": "RA_kwDOCa0F0M4HWGQs", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23028925, + "download_count": 6, + "created_at": "2023-08-26T15:39:14Z", + "updated_at": "2023-08-26T15:39:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233325", + "id": 123233325, + "node_id": "RA_kwDOCa0F0M4HWGQt", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:14Z", + "updated_at": "2023-08-26T15:39:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233326", + "id": 123233326, + "node_id": "RA_kwDOCa0F0M4HWGQu", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 19247729, + "download_count": 80, + "created_at": "2023-08-26T15:39:14Z", + "updated_at": "2023-08-26T15:39:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233327", + "id": 123233327, + "node_id": "RA_kwDOCa0F0M4HWGQv", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 42, + "created_at": "2023-08-26T15:39:14Z", + "updated_at": "2023-08-26T15:39:14Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233328", + "id": 123233328, + "node_id": "RA_kwDOCa0F0M4HWGQw", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31462831, + "download_count": 6, + "created_at": "2023-08-26T15:39:15Z", + "updated_at": "2023-08-26T15:39:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233329", + "id": 123233329, + "node_id": "RA_kwDOCa0F0M4HWGQx", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:15Z", + "updated_at": "2023-08-26T15:39:15Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233330", + "id": 123233330, + "node_id": "RA_kwDOCa0F0M4HWGQy", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32854862, + "download_count": 164, + "created_at": "2023-08-26T15:39:15Z", + "updated_at": "2023-08-26T15:39:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233331", + "id": 123233331, + "node_id": "RA_kwDOCa0F0M4HWGQz", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 103, + "created_at": "2023-08-26T15:39:15Z", + "updated_at": "2023-08-26T15:39:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233332", + "id": 123233332, + "node_id": "RA_kwDOCa0F0M4HWGQ0", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25003858, + "download_count": 6, + "created_at": "2023-08-26T15:39:15Z", + "updated_at": "2023-08-26T15:39:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233333", + "id": 123233333, + "node_id": "RA_kwDOCa0F0M4HWGQ1", + "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:16Z", + "updated_at": "2023-08-26T15:39:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233334", + "id": 123233334, + "node_id": "RA_kwDOCa0F0M4HWGQ2", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31683977, + "download_count": 14, + "created_at": "2023-08-26T15:39:16Z", + "updated_at": "2023-08-26T15:39:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233338", + "id": 123233338, + "node_id": "RA_kwDOCa0F0M4HWGQ6", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:39:16Z", + "updated_at": "2023-08-26T15:39:16Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233339", + "id": 123233339, + "node_id": "RA_kwDOCa0F0M4HWGQ7", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25883841, + "download_count": 13, + "created_at": "2023-08-26T15:39:16Z", + "updated_at": "2023-08-26T15:39:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233340", + "id": 123233340, + "node_id": "RA_kwDOCa0F0M4HWGQ8", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 43, + "created_at": "2023-08-26T15:39:17Z", + "updated_at": "2023-08-26T15:39:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233343", + "id": 123233343, + "node_id": "RA_kwDOCa0F0M4HWGQ_", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 98710217, + "download_count": 90, + "created_at": "2023-08-26T15:39:17Z", + "updated_at": "2023-08-26T15:39:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233342", + "id": 123233342, + "node_id": "RA_kwDOCa0F0M4HWGQ-", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 74, + "created_at": "2023-08-26T15:39:17Z", + "updated_at": "2023-08-26T15:39:17Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233344", + "id": 123233344, + "node_id": "RA_kwDOCa0F0M4HWGRA", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32898070, + "download_count": 6, + "created_at": "2023-08-26T15:39:17Z", + "updated_at": "2023-08-26T15:39:19Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233346", + "id": 123233346, + "node_id": "RA_kwDOCa0F0M4HWGRC", + "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:39:17Z", + "updated_at": "2023-08-26T15:39:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233347", + "id": 123233347, + "node_id": "RA_kwDOCa0F0M4HWGRD", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37711059, + "download_count": 47, + "created_at": "2023-08-26T15:39:18Z", + "updated_at": "2023-08-26T15:39:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233348", + "id": 123233348, + "node_id": "RA_kwDOCa0F0M4HWGRE", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:18Z", + "updated_at": "2023-08-26T15:39:18Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233349", + "id": 123233349, + "node_id": "RA_kwDOCa0F0M4HWGRF", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34949306, + "download_count": 18, + "created_at": "2023-08-26T15:39:18Z", + "updated_at": "2023-08-26T15:39:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233354", + "id": 123233354, + "node_id": "RA_kwDOCa0F0M4HWGRK", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 101, + "created_at": "2023-08-26T15:39:20Z", + "updated_at": "2023-08-26T15:39:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233355", + "id": 123233355, + "node_id": "RA_kwDOCa0F0M4HWGRL", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 42599585, + "download_count": 6, + "created_at": "2023-08-26T15:39:20Z", + "updated_at": "2023-08-26T15:39:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233356", + "id": 123233356, + "node_id": "RA_kwDOCa0F0M4HWGRM", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:20Z", + "updated_at": "2023-08-26T15:39:20Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233360", + "id": 123233360, + "node_id": "RA_kwDOCa0F0M4HWGRQ", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35401539, + "download_count": 6, + "created_at": "2023-08-26T15:39:20Z", + "updated_at": "2023-08-26T15:39:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233361", + "id": 123233361, + "node_id": "RA_kwDOCa0F0M4HWGRR", + "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:20Z", + "updated_at": "2023-08-26T15:39:21Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233362", + "id": 123233362, + "node_id": "RA_kwDOCa0F0M4HWGRS", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26707532, + "download_count": 19, + "created_at": "2023-08-26T15:39:21Z", + "updated_at": "2023-08-26T15:39:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233365", + "id": 123233365, + "node_id": "RA_kwDOCa0F0M4HWGRV", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:39:22Z", + "updated_at": "2023-08-26T15:39:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233366", + "id": 123233366, + "node_id": "RA_kwDOCa0F0M4HWGRW", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27460311, + "download_count": 16, + "created_at": "2023-08-26T15:39:22Z", + "updated_at": "2023-08-26T15:39:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233367", + "id": 123233367, + "node_id": "RA_kwDOCa0F0M4HWGRX", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:22Z", + "updated_at": "2023-08-26T15:39:22Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233368", + "id": 123233368, + "node_id": "RA_kwDOCa0F0M4HWGRY", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39281508, + "download_count": 6, + "created_at": "2023-08-26T15:39:22Z", + "updated_at": "2023-08-26T15:39:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233369", + "id": 123233369, + "node_id": "RA_kwDOCa0F0M4HWGRZ", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 15, + "created_at": "2023-08-26T15:39:22Z", + "updated_at": "2023-08-26T15:39:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233370", + "id": 123233370, + "node_id": "RA_kwDOCa0F0M4HWGRa", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40694135, + "download_count": 17, + "created_at": "2023-08-26T15:39:23Z", + "updated_at": "2023-08-26T15:39:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233371", + "id": 123233371, + "node_id": "RA_kwDOCa0F0M4HWGRb", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 87, + "created_at": "2023-08-26T15:39:23Z", + "updated_at": "2023-08-26T15:39:23Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233372", + "id": 123233372, + "node_id": "RA_kwDOCa0F0M4HWGRc", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28730640, + "download_count": 6, + "created_at": "2023-08-26T15:39:23Z", + "updated_at": "2023-08-26T15:39:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233376", + "id": 123233376, + "node_id": "RA_kwDOCa0F0M4HWGRg", + "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:24Z", + "updated_at": "2023-08-26T15:39:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233377", + "id": 123233377, + "node_id": "RA_kwDOCa0F0M4HWGRh", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23042679, + "download_count": 7, + "created_at": "2023-08-26T15:39:24Z", + "updated_at": "2023-08-26T15:39:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233378", + "id": 123233378, + "node_id": "RA_kwDOCa0F0M4HWGRi", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:24Z", + "updated_at": "2023-08-26T15:39:24Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233379", + "id": 123233379, + "node_id": "RA_kwDOCa0F0M4HWGRj", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 19505723, + "download_count": 3196, + "created_at": "2023-08-26T15:39:25Z", + "updated_at": "2023-08-26T15:39:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233380", + "id": 123233380, + "node_id": "RA_kwDOCa0F0M4HWGRk", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 42, + "created_at": "2023-08-26T15:39:25Z", + "updated_at": "2023-08-26T15:39:25Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233381", + "id": 123233381, + "node_id": "RA_kwDOCa0F0M4HWGRl", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31428843, + "download_count": 6, + "created_at": "2023-08-26T15:39:25Z", + "updated_at": "2023-08-26T15:39:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233382", + "id": 123233382, + "node_id": "RA_kwDOCa0F0M4HWGRm", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:25Z", + "updated_at": "2023-08-26T15:39:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233383", + "id": 123233383, + "node_id": "RA_kwDOCa0F0M4HWGRn", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32670013, + "download_count": 1010, + "created_at": "2023-08-26T15:39:26Z", + "updated_at": "2023-08-26T15:39:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233384", + "id": 123233384, + "node_id": "RA_kwDOCa0F0M4HWGRo", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 102, + "created_at": "2023-08-26T15:39:26Z", + "updated_at": "2023-08-26T15:39:26Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233385", + "id": 123233385, + "node_id": "RA_kwDOCa0F0M4HWGRp", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24513335, + "download_count": 6, + "created_at": "2023-08-26T15:39:26Z", + "updated_at": "2023-08-26T15:39:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233388", + "id": 123233388, + "node_id": "RA_kwDOCa0F0M4HWGRs", + "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:27Z", + "updated_at": "2023-08-26T15:39:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233386", + "id": 123233386, + "node_id": "RA_kwDOCa0F0M4HWGRq", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38708990, + "download_count": 4932, + "created_at": "2023-08-26T15:39:27Z", + "updated_at": "2023-08-26T15:39:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233387", + "id": 123233387, + "node_id": "RA_kwDOCa0F0M4HWGRr", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 42, + "created_at": "2023-08-26T15:39:27Z", + "updated_at": "2023-08-26T15:39:27Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233389", + "id": 123233389, + "node_id": "RA_kwDOCa0F0M4HWGRt", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35657833, + "download_count": 1068, + "created_at": "2023-08-26T15:39:27Z", + "updated_at": "2023-08-26T15:39:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233390", + "id": 123233390, + "node_id": "RA_kwDOCa0F0M4HWGRu", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 100, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233391", + "id": 123233391, + "node_id": "RA_kwDOCa0F0M4HWGRv", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 44340648, + "download_count": 9, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233392", + "id": 123233392, + "node_id": "RA_kwDOCa0F0M4HWGRw", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233393", + "id": 123233393, + "node_id": "RA_kwDOCa0F0M4HWGRx", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38845708, + "download_count": 7, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233394", + "id": 123233394, + "node_id": "RA_kwDOCa0F0M4HWGRy", + "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:28Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233395", + "id": 123233395, + "node_id": "RA_kwDOCa0F0M4HWGRz", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26310383, + "download_count": 15, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233396", + "id": 123233396, + "node_id": "RA_kwDOCa0F0M4HWGR0", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:39:28Z", + "updated_at": "2023-08-26T15:39:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233397", + "id": 123233397, + "node_id": "RA_kwDOCa0F0M4HWGR1", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27685259, + "download_count": 7637, + "created_at": "2023-08-26T15:39:29Z", + "updated_at": "2023-08-26T15:39:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233398", + "id": 123233398, + "node_id": "RA_kwDOCa0F0M4HWGR2", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 43, + "created_at": "2023-08-26T15:39:29Z", + "updated_at": "2023-08-26T15:39:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233399", + "id": 123233399, + "node_id": "RA_kwDOCa0F0M4HWGR3", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39364638, + "download_count": 9, + "created_at": "2023-08-26T15:39:29Z", + "updated_at": "2023-08-26T15:39:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233400", + "id": 123233400, + "node_id": "RA_kwDOCa0F0M4HWGR4", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:29Z", + "updated_at": "2023-08-26T15:39:29Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233401", + "id": 123233401, + "node_id": "RA_kwDOCa0F0M4HWGR5", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40911080, + "download_count": 2561, + "created_at": "2023-08-26T15:39:30Z", + "updated_at": "2023-08-26T15:39:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233402", + "id": 123233402, + "node_id": "RA_kwDOCa0F0M4HWGR6", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 87, + "created_at": "2023-08-26T15:39:30Z", + "updated_at": "2023-08-26T15:39:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233403", + "id": 123233403, + "node_id": "RA_kwDOCa0F0M4HWGR7", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 28850489, + "download_count": 284, + "created_at": "2023-08-26T15:39:30Z", + "updated_at": "2023-08-26T15:39:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233404", + "id": 123233404, + "node_id": "RA_kwDOCa0F0M4HWGR8", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 26, + "created_at": "2023-08-26T15:39:30Z", + "updated_at": "2023-08-26T15:39:30Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233405", + "id": 123233405, + "node_id": "RA_kwDOCa0F0M4HWGR9", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25558019, + "download_count": 6, + "created_at": "2023-08-26T15:39:30Z", + "updated_at": "2023-08-26T15:39:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233406", + "id": 123233406, + "node_id": "RA_kwDOCa0F0M4HWGR-", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:31Z", + "updated_at": "2023-08-26T15:39:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233407", + "id": 123233407, + "node_id": "RA_kwDOCa0F0M4HWGR_", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26025814, + "download_count": 133, + "created_at": "2023-08-26T15:39:31Z", + "updated_at": "2023-08-26T15:39:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233408", + "id": 123233408, + "node_id": "RA_kwDOCa0F0M4HWGSA", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:31Z", + "updated_at": "2023-08-26T15:39:31Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233409", + "id": 123233409, + "node_id": "RA_kwDOCa0F0M4HWGSB", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37973549, + "download_count": 27, + "created_at": "2023-08-26T15:39:32Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233410", + "id": 123233410, + "node_id": "RA_kwDOCa0F0M4HWGSC", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 46, + "created_at": "2023-08-26T15:39:32Z", + "updated_at": "2023-08-26T15:39:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233411", + "id": 123233411, + "node_id": "RA_kwDOCa0F0M4HWGSD", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27499101, + "download_count": 9, + "created_at": "2023-08-26T15:39:32Z", + "updated_at": "2023-08-26T15:39:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233412", + "id": 123233412, + "node_id": "RA_kwDOCa0F0M4HWGSE", + "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:32Z", + "updated_at": "2023-08-26T15:39:32Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233413", + "id": 123233413, + "node_id": "RA_kwDOCa0F0M4HWGSF", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 21591005, + "download_count": 6, + "created_at": "2023-08-26T15:39:33Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233414", + "id": 123233414, + "node_id": "RA_kwDOCa0F0M4HWGSG", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:33Z", + "updated_at": "2023-08-26T15:39:33Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233415", + "id": 123233415, + "node_id": "RA_kwDOCa0F0M4HWGSH", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 16320623, + "download_count": 308, + "created_at": "2023-08-26T15:39:33Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233417", + "id": 123233417, + "node_id": "RA_kwDOCa0F0M4HWGSJ", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:33Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233418", + "id": 123233418, + "node_id": "RA_kwDOCa0F0M4HWGSK", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30486854, + "download_count": 6, + "created_at": "2023-08-26T15:39:33Z", + "updated_at": "2023-08-26T15:39:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233420", + "id": 123233420, + "node_id": "RA_kwDOCa0F0M4HWGSM", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:34Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233421", + "id": 123233421, + "node_id": "RA_kwDOCa0F0M4HWGSN", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31911436, + "download_count": 71, + "created_at": "2023-08-26T15:39:34Z", + "updated_at": "2023-08-26T15:39:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233422", + "id": 123233422, + "node_id": "RA_kwDOCa0F0M4HWGSO", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 41, + "created_at": "2023-08-26T15:39:34Z", + "updated_at": "2023-08-26T15:39:34Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233423", + "id": 123233423, + "node_id": "RA_kwDOCa0F0M4HWGSP", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23496071, + "download_count": 6, + "created_at": "2023-08-26T15:39:34Z", + "updated_at": "2023-08-26T15:39:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233424", + "id": 123233424, + "node_id": "RA_kwDOCa0F0M4HWGSQ", + "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:34Z", + "updated_at": "2023-08-26T15:39:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233426", + "id": 123233426, + "node_id": "RA_kwDOCa0F0M4HWGSS", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31288175, + "download_count": 6, + "created_at": "2023-08-26T15:39:35Z", + "updated_at": "2023-08-26T15:39:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233427", + "id": 123233427, + "node_id": "RA_kwDOCa0F0M4HWGST", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:35Z", + "updated_at": "2023-08-26T15:39:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233428", + "id": 123233428, + "node_id": "RA_kwDOCa0F0M4HWGSU", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23258597, + "download_count": 640, + "created_at": "2023-08-26T15:39:35Z", + "updated_at": "2023-08-26T15:39:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233429", + "id": 123233429, + "node_id": "RA_kwDOCa0F0M4HWGSV", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:35Z", + "updated_at": "2023-08-26T15:39:35Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233430", + "id": 123233430, + "node_id": "RA_kwDOCa0F0M4HWGSW", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 101548312, + "download_count": 11, + "created_at": "2023-08-26T15:39:35Z", + "updated_at": "2023-08-26T15:39:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233431", + "id": 123233431, + "node_id": "RA_kwDOCa0F0M4HWGSX", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 22, + "created_at": "2023-08-26T15:39:36Z", + "updated_at": "2023-08-26T15:39:36Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233432", + "id": 123233432, + "node_id": "RA_kwDOCa0F0M4HWGSY", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31464420, + "download_count": 6, + "created_at": "2023-08-26T15:39:36Z", + "updated_at": "2023-08-26T15:39:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233435", + "id": 123233435, + "node_id": "RA_kwDOCa0F0M4HWGSb", + "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:37Z", + "updated_at": "2023-08-26T15:39:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233433", + "id": 123233433, + "node_id": "RA_kwDOCa0F0M4HWGSZ", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 36750875, + "download_count": 10, + "created_at": "2023-08-26T15:39:36Z", + "updated_at": "2023-08-26T15:39:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233434", + "id": 123233434, + "node_id": "RA_kwDOCa0F0M4HWGSa", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:37Z", + "updated_at": "2023-08-26T15:39:37Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233436", + "id": 123233436, + "node_id": "RA_kwDOCa0F0M4HWGSc", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 34533570, + "download_count": 8, + "created_at": "2023-08-26T15:39:38Z", + "updated_at": "2023-08-26T15:39:39Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233437", + "id": 123233437, + "node_id": "RA_kwDOCa0F0M4HWGSd", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 31, + "created_at": "2023-08-26T15:39:38Z", + "updated_at": "2023-08-26T15:39:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233438", + "id": 123233438, + "node_id": "RA_kwDOCa0F0M4HWGSe", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 41713056, + "download_count": 6, + "created_at": "2023-08-26T15:39:38Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233439", + "id": 123233439, + "node_id": "RA_kwDOCa0F0M4HWGSf", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:38Z", + "updated_at": "2023-08-26T15:39:38Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233440", + "id": 123233440, + "node_id": "RA_kwDOCa0F0M4HWGSg", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35319306, + "download_count": 6, + "created_at": "2023-08-26T15:39:39Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233442", + "id": 123233442, + "node_id": "RA_kwDOCa0F0M4HWGSi", + "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:39Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233443", + "id": 123233443, + "node_id": "RA_kwDOCa0F0M4HWGSj", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25287799, + "download_count": 18, + "created_at": "2023-08-26T15:39:39Z", + "updated_at": "2023-08-26T15:39:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233446", + "id": 123233446, + "node_id": "RA_kwDOCa0F0M4HWGSm", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233447", + "id": 123233447, + "node_id": "RA_kwDOCa0F0M4HWGSn", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25264036, + "download_count": 14, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233448", + "id": 123233448, + "node_id": "RA_kwDOCa0F0M4HWGSo", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233451", + "id": 123233451, + "node_id": "RA_kwDOCa0F0M4HWGSr", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38958653, + "download_count": 6, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233450", + "id": 123233450, + "node_id": "RA_kwDOCa0F0M4HWGSq", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:40Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233452", + "id": 123233452, + "node_id": "RA_kwDOCa0F0M4HWGSs", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40382992, + "download_count": 9, + "created_at": "2023-08-26T15:39:40Z", + "updated_at": "2023-08-26T15:39:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233453", + "id": 123233453, + "node_id": "RA_kwDOCa0F0M4HWGSt", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 88, + "created_at": "2023-08-26T15:39:41Z", + "updated_at": "2023-08-26T15:39:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233454", + "id": 123233454, + "node_id": "RA_kwDOCa0F0M4HWGSu", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27293493, + "download_count": 8, + "created_at": "2023-08-26T15:39:41Z", + "updated_at": "2023-08-26T15:39:48Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233456", + "id": 123233456, + "node_id": "RA_kwDOCa0F0M4HWGSw", + "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:41Z", + "updated_at": "2023-08-26T15:39:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233455", + "id": 123233455, + "node_id": "RA_kwDOCa0F0M4HWGSv", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32324377, + "download_count": 7, + "created_at": "2023-08-26T15:39:41Z", + "updated_at": "2023-08-26T15:39:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233457", + "id": 123233457, + "node_id": "RA_kwDOCa0F0M4HWGSx", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:41Z", + "updated_at": "2023-08-26T15:39:41Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233458", + "id": 123233458, + "node_id": "RA_kwDOCa0F0M4HWGSy", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24046198, + "download_count": 8, + "created_at": "2023-08-26T15:39:42Z", + "updated_at": "2023-08-26T15:39:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233459", + "id": 123233459, + "node_id": "RA_kwDOCa0F0M4HWGSz", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:42Z", + "updated_at": "2023-08-26T15:39:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233460", + "id": 123233460, + "node_id": "RA_kwDOCa0F0M4HWGS0", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 108895882, + "download_count": 6, + "created_at": "2023-08-26T15:39:42Z", + "updated_at": "2023-08-26T15:39:48Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233461", + "id": 123233461, + "node_id": "RA_kwDOCa0F0M4HWGS1", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:42Z", + "updated_at": "2023-08-26T15:39:42Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233462", + "id": 123233462, + "node_id": "RA_kwDOCa0F0M4HWGS2", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 32459671, + "download_count": 6, + "created_at": "2023-08-26T15:39:42Z", + "updated_at": "2023-08-26T15:39:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233463", + "id": 123233463, + "node_id": "RA_kwDOCa0F0M4HWGS3", + "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:43Z", + "updated_at": "2023-08-26T15:39:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233464", + "id": 123233464, + "node_id": "RA_kwDOCa0F0M4HWGS4", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 33171363, + "download_count": 6, + "created_at": "2023-08-26T15:39:43Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233465", + "id": 123233465, + "node_id": "RA_kwDOCa0F0M4HWGS5", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:43Z", + "updated_at": "2023-08-26T15:39:43Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233467", + "id": 123233467, + "node_id": "RA_kwDOCa0F0M4HWGS7", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24537024, + "download_count": 8, + "created_at": "2023-08-26T15:39:43Z", + "updated_at": "2023-08-26T15:39:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233468", + "id": 123233468, + "node_id": "RA_kwDOCa0F0M4HWGS8", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:44Z", + "updated_at": "2023-08-26T15:39:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233469", + "id": 123233469, + "node_id": "RA_kwDOCa0F0M4HWGS9", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 118088452, + "download_count": 6, + "created_at": "2023-08-26T15:39:44Z", + "updated_at": "2023-08-26T15:39:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233470", + "id": 123233470, + "node_id": "RA_kwDOCa0F0M4HWGS-", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:44Z", + "updated_at": "2023-08-26T15:39:44Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233471", + "id": 123233471, + "node_id": "RA_kwDOCa0F0M4HWGS_", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 33540026, + "download_count": 6, + "created_at": "2023-08-26T15:39:45Z", + "updated_at": "2023-08-26T15:39:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233472", + "id": 123233472, + "node_id": "RA_kwDOCa0F0M4HWGTA", + "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:45Z", + "updated_at": "2023-08-26T15:39:45Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233474", + "id": 123233474, + "node_id": "RA_kwDOCa0F0M4HWGTC", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 21594105, + "download_count": 6, + "created_at": "2023-08-26T15:39:45Z", + "updated_at": "2023-08-26T15:39:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233476", + "id": 123233476, + "node_id": "RA_kwDOCa0F0M4HWGTE", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:47Z", + "updated_at": "2023-08-26T15:39:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233477", + "id": 123233477, + "node_id": "RA_kwDOCa0F0M4HWGTF", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 16596001, + "download_count": 516, + "created_at": "2023-08-26T15:39:47Z", + "updated_at": "2023-08-26T15:39:48Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233478", + "id": 123233478, + "node_id": "RA_kwDOCa0F0M4HWGTG", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:47Z", + "updated_at": "2023-08-26T15:39:47Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233479", + "id": 123233479, + "node_id": "RA_kwDOCa0F0M4HWGTH", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 30469217, + "download_count": 6, + "created_at": "2023-08-26T15:39:48Z", + "updated_at": "2023-08-26T15:39:50Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233480", + "id": 123233480, + "node_id": "RA_kwDOCa0F0M4HWGTI", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:48Z", + "updated_at": "2023-08-26T15:39:48Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233481", + "id": 123233481, + "node_id": "RA_kwDOCa0F0M4HWGTJ", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 31697418, + "download_count": 69, + "created_at": "2023-08-26T15:39:48Z", + "updated_at": "2023-08-26T15:39:50Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233482", + "id": 123233482, + "node_id": "RA_kwDOCa0F0M4HWGTK", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 38, + "created_at": "2023-08-26T15:39:48Z", + "updated_at": "2023-08-26T15:39:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233483", + "id": 123233483, + "node_id": "RA_kwDOCa0F0M4HWGTL", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23003731, + "download_count": 6, + "created_at": "2023-08-26T15:39:49Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233484", + "id": 123233484, + "node_id": "RA_kwDOCa0F0M4HWGTM", + "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:49Z", + "updated_at": "2023-08-26T15:39:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233485", + "id": 123233485, + "node_id": "RA_kwDOCa0F0M4HWGTN", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37761715, + "download_count": 1724, + "created_at": "2023-08-26T15:39:49Z", + "updated_at": "2023-08-26T15:39:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233487", + "id": 123233487, + "node_id": "RA_kwDOCa0F0M4HWGTP", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:49Z", + "updated_at": "2023-08-26T15:39:49Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233489", + "id": 123233489, + "node_id": "RA_kwDOCa0F0M4HWGTR", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 35239163, + "download_count": 53, + "created_at": "2023-08-26T15:39:50Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233490", + "id": 123233490, + "node_id": "RA_kwDOCa0F0M4HWGTS", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 33, + "created_at": "2023-08-26T15:39:50Z", + "updated_at": "2023-08-26T15:39:50Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233491", + "id": 123233491, + "node_id": "RA_kwDOCa0F0M4HWGTT", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 43523839, + "download_count": 9, + "created_at": "2023-08-26T15:39:50Z", + "updated_at": "2023-08-26T15:39:52Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233492", + "id": 123233492, + "node_id": "RA_kwDOCa0F0M4HWGTU", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:50Z", + "updated_at": "2023-08-26T15:39:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233493", + "id": 123233493, + "node_id": "RA_kwDOCa0F0M4HWGTV", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38414936, + "download_count": 6, + "created_at": "2023-08-26T15:39:51Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233494", + "id": 123233494, + "node_id": "RA_kwDOCa0F0M4HWGTW", + "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:51Z", + "updated_at": "2023-08-26T15:39:51Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233495", + "id": 123233495, + "node_id": "RA_kwDOCa0F0M4HWGTX", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24834710, + "download_count": 7, + "created_at": "2023-08-26T15:39:52Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233496", + "id": 123233496, + "node_id": "RA_kwDOCa0F0M4HWGTY", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:52Z", + "updated_at": "2023-08-26T15:39:52Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233497", + "id": 123233497, + "node_id": "RA_kwDOCa0F0M4HWGTZ", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25387991, + "download_count": 21404, + "created_at": "2023-08-26T15:39:52Z", + "updated_at": "2023-08-26T15:39:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233498", + "id": 123233498, + "node_id": "RA_kwDOCa0F0M4HWGTa", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 16, + "created_at": "2023-08-26T15:39:53Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233499", + "id": 123233499, + "node_id": "RA_kwDOCa0F0M4HWGTb", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38908483, + "download_count": 6, + "created_at": "2023-08-26T15:39:53Z", + "updated_at": "2023-08-26T15:39:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233500", + "id": 123233500, + "node_id": "RA_kwDOCa0F0M4HWGTc", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:53Z", + "updated_at": "2023-08-26T15:39:53Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233501", + "id": 123233501, + "node_id": "RA_kwDOCa0F0M4HWGTd", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40472410, + "download_count": 937, + "created_at": "2023-08-26T15:39:53Z", + "updated_at": "2023-08-26T15:39:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233503", + "id": 123233503, + "node_id": "RA_kwDOCa0F0M4HWGTf", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 35, + "created_at": "2023-08-26T15:39:53Z", + "updated_at": "2023-08-26T15:39:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233504", + "id": 123233504, + "node_id": "RA_kwDOCa0F0M4HWGTg", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27383517, + "download_count": 8, + "created_at": "2023-08-26T15:39:54Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233505", + "id": 123233505, + "node_id": "RA_kwDOCa0F0M4HWGTh", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 25, + "created_at": "2023-08-26T15:39:54Z", + "updated_at": "2023-08-26T15:39:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233508", + "id": 123233508, + "node_id": "RA_kwDOCa0F0M4HWGTk", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24123813, + "download_count": 6, + "created_at": "2023-08-26T15:39:54Z", + "updated_at": "2023-08-26T15:39:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233509", + "id": 123233509, + "node_id": "RA_kwDOCa0F0M4HWGTl", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:54Z", + "updated_at": "2023-08-26T15:39:54Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233510", + "id": 123233510, + "node_id": "RA_kwDOCa0F0M4HWGTm", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23981192, + "download_count": 71, + "created_at": "2023-08-26T15:39:55Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233511", + "id": 123233511, + "node_id": "RA_kwDOCa0F0M4HWGTn", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:55Z", + "updated_at": "2023-08-26T15:39:55Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233513", + "id": 123233513, + "node_id": "RA_kwDOCa0F0M4HWGTp", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37792656, + "download_count": 7, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233514", + "id": 123233514, + "node_id": "RA_kwDOCa0F0M4HWGTq", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 17, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233516", + "id": 123233516, + "node_id": "RA_kwDOCa0F0M4HWGTs", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26190159, + "download_count": 7, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:40:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233519", + "id": 123233519, + "node_id": "RA_kwDOCa0F0M4HWGTv", + "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233518", + "id": 123233518, + "node_id": "RA_kwDOCa0F0M4HWGTu", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24780359, + "download_count": 6, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233521", + "id": 123233521, + "node_id": "RA_kwDOCa0F0M4HWGTx", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:56Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233522", + "id": 123233522, + "node_id": "RA_kwDOCa0F0M4HWGTy", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25258322, + "download_count": 280, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233523", + "id": 123233523, + "node_id": "RA_kwDOCa0F0M4HWGTz", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:39:56Z", + "updated_at": "2023-08-26T15:39:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233525", + "id": 123233525, + "node_id": "RA_kwDOCa0F0M4HWGT1", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 38828077, + "download_count": 9, + "created_at": "2023-08-26T15:39:57Z", + "updated_at": "2023-08-26T15:39:59Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233526", + "id": 123233526, + "node_id": "RA_kwDOCa0F0M4HWGT2", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 14, + "created_at": "2023-08-26T15:39:57Z", + "updated_at": "2023-08-26T15:39:57Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233528", + "id": 123233528, + "node_id": "RA_kwDOCa0F0M4HWGT4", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40410140, + "download_count": 8, + "created_at": "2023-08-26T15:39:57Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233529", + "id": 123233529, + "node_id": "RA_kwDOCa0F0M4HWGT5", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:39:58Z", + "updated_at": "2023-08-26T15:39:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233530", + "id": 123233530, + "node_id": "RA_kwDOCa0F0M4HWGT6", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27354595, + "download_count": 8, + "created_at": "2023-08-26T15:39:58Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233532", + "id": 123233532, + "node_id": "RA_kwDOCa0F0M4HWGT8", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:39:58Z", + "updated_at": "2023-08-26T15:39:58Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233534", + "id": 123233534, + "node_id": "RA_kwDOCa0F0M4HWGT-", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24122237, + "download_count": 6, + "created_at": "2023-08-26T15:39:58Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233535", + "id": 123233535, + "node_id": "RA_kwDOCa0F0M4HWGT_", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:39:59Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233536", + "id": 123233536, + "node_id": "RA_kwDOCa0F0M4HWGUA", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 23956884, + "download_count": 7, + "created_at": "2023-08-26T15:39:59Z", + "updated_at": "2023-08-26T15:40:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233538", + "id": 123233538, + "node_id": "RA_kwDOCa0F0M4HWGUC", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:00Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233539", + "id": 123233539, + "node_id": "RA_kwDOCa0F0M4HWGUD", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37742119, + "download_count": 6, + "created_at": "2023-08-26T15:40:00Z", + "updated_at": "2023-08-26T15:40:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233540", + "id": 123233540, + "node_id": "RA_kwDOCa0F0M4HWGUE", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:00Z", + "updated_at": "2023-08-26T15:40:00Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233541", + "id": 123233541, + "node_id": "RA_kwDOCa0F0M4HWGUF", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26174064, + "download_count": 6, + "created_at": "2023-08-26T15:40:00Z", + "updated_at": "2023-08-26T15:40:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233542", + "id": 123233542, + "node_id": "RA_kwDOCa0F0M4HWGUG", + "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:40:00Z", + "updated_at": "2023-08-26T15:40:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233543", + "id": 123233543, + "node_id": "RA_kwDOCa0F0M4HWGUH", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24808698, + "download_count": 6, + "created_at": "2023-08-26T15:40:01Z", + "updated_at": "2023-08-26T15:40:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233544", + "id": 123233544, + "node_id": "RA_kwDOCa0F0M4HWGUI", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:01Z", + "updated_at": "2023-08-26T15:40:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233546", + "id": 123233546, + "node_id": "RA_kwDOCa0F0M4HWGUK", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 25293761, + "download_count": 407, + "created_at": "2023-08-26T15:40:01Z", + "updated_at": "2023-08-26T15:40:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233547", + "id": 123233547, + "node_id": "RA_kwDOCa0F0M4HWGUL", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:40:01Z", + "updated_at": "2023-08-26T15:40:01Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233548", + "id": 123233548, + "node_id": "RA_kwDOCa0F0M4HWGUM", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39050535, + "download_count": 6, + "created_at": "2023-08-26T15:40:02Z", + "updated_at": "2023-08-26T15:40:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233549", + "id": 123233549, + "node_id": "RA_kwDOCa0F0M4HWGUN", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:40:02Z", + "updated_at": "2023-08-26T15:40:02Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233550", + "id": 123233550, + "node_id": "RA_kwDOCa0F0M4HWGUO", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 40477266, + "download_count": 17, + "created_at": "2023-08-26T15:40:02Z", + "updated_at": "2023-08-26T15:40:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233552", + "id": 123233552, + "node_id": "RA_kwDOCa0F0M4HWGUQ", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 21, + "created_at": "2023-08-26T15:40:03Z", + "updated_at": "2023-08-26T15:40:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233553", + "id": 123233553, + "node_id": "RA_kwDOCa0F0M4HWGUR", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 27384863, + "download_count": 6, + "created_at": "2023-08-26T15:40:03Z", + "updated_at": "2023-08-26T15:40:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233554", + "id": 123233554, + "node_id": "RA_kwDOCa0F0M4HWGUS", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 20, + "created_at": "2023-08-26T15:40:03Z", + "updated_at": "2023-08-26T15:40:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233555", + "id": 123233555, + "node_id": "RA_kwDOCa0F0M4HWGUT", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24157660, + "download_count": 6, + "created_at": "2023-08-26T15:40:03Z", + "updated_at": "2023-08-26T15:40:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233556", + "id": 123233556, + "node_id": "RA_kwDOCa0F0M4HWGUU", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:03Z", + "updated_at": "2023-08-26T15:40:03Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233557", + "id": 123233557, + "node_id": "RA_kwDOCa0F0M4HWGUV", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24049470, + "download_count": 76, + "created_at": "2023-08-26T15:40:04Z", + "updated_at": "2023-08-26T15:40:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233558", + "id": 123233558, + "node_id": "RA_kwDOCa0F0M4HWGUW", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:04Z", + "updated_at": "2023-08-26T15:40:04Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233560", + "id": 123233560, + "node_id": "RA_kwDOCa0F0M4HWGUY", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37967681, + "download_count": 7, + "created_at": "2023-08-26T15:40:04Z", + "updated_at": "2023-08-26T15:40:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233561", + "id": 123233561, + "node_id": "RA_kwDOCa0F0M4HWGUZ", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:40:04Z", + "updated_at": "2023-08-26T15:40:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233562", + "id": 123233562, + "node_id": "RA_kwDOCa0F0M4HWGUa", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26242518, + "download_count": 6, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233563", + "id": 123233563, + "node_id": "RA_kwDOCa0F0M4HWGUb", + "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233564", + "id": 123233564, + "node_id": "RA_kwDOCa0F0M4HWGUc", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24816044, + "download_count": 7, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233565", + "id": 123233565, + "node_id": "RA_kwDOCa0F0M4HWGUd", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233566", + "id": 123233566, + "node_id": "RA_kwDOCa0F0M4HWGUe", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24835228, + "download_count": 10, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:12Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233567", + "id": 123233567, + "node_id": "RA_kwDOCa0F0M4HWGUf", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:05Z", + "updated_at": "2023-08-26T15:40:05Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233570", + "id": 123233570, + "node_id": "RA_kwDOCa0F0M4HWGUi", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 39029853, + "download_count": 8, + "created_at": "2023-08-26T15:40:06Z", + "updated_at": "2023-08-26T15:40:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233572", + "id": 123233572, + "node_id": "RA_kwDOCa0F0M4HWGUk", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:06Z", + "updated_at": "2023-08-26T15:40:06Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233573", + "id": 123233573, + "node_id": "RA_kwDOCa0F0M4HWGUl", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26825380, + "download_count": 6, + "created_at": "2023-08-26T15:40:06Z", + "updated_at": "2023-08-26T15:40:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233574", + "id": 123233574, + "node_id": "RA_kwDOCa0F0M4HWGUm", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:06Z", + "updated_at": "2023-08-26T15:40:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233575", + "id": 123233575, + "node_id": "RA_kwDOCa0F0M4HWGUn", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24168299, + "download_count": 6, + "created_at": "2023-08-26T15:40:06Z", + "updated_at": "2023-08-26T15:40:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233576", + "id": 123233576, + "node_id": "RA_kwDOCa0F0M4HWGUo", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:07Z", + "updated_at": "2023-08-26T15:40:07Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233578", + "id": 123233578, + "node_id": "RA_kwDOCa0F0M4HWGUq", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 24053106, + "download_count": 6, + "created_at": "2023-08-26T15:40:07Z", + "updated_at": "2023-08-26T15:40:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233579", + "id": 123233579, + "node_id": "RA_kwDOCa0F0M4HWGUr", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:08Z", + "updated_at": "2023-08-26T15:40:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233580", + "id": 123233580, + "node_id": "RA_kwDOCa0F0M4HWGUs", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 37957589, + "download_count": 6, + "created_at": "2023-08-26T15:40:08Z", + "updated_at": "2023-08-26T15:40:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233582", + "id": 123233582, + "node_id": "RA_kwDOCa0F0M4HWGUu", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 12, + "created_at": "2023-08-26T15:40:08Z", + "updated_at": "2023-08-26T15:40:08Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233581", + "id": 123233581, + "node_id": "RA_kwDOCa0F0M4HWGUt", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 26246896, + "download_count": 10, + "created_at": "2023-08-26T15:40:08Z", + "updated_at": "2023-08-26T15:40:10Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233584", + "id": 123233584, + "node_id": "RA_kwDOCa0F0M4HWGUw", + "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 65, + "download_count": 13, + "created_at": "2023-08-26T15:40:09Z", + "updated_at": "2023-08-26T15:40:09Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" + }, + { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233591", + "id": 123233591, + "node_id": "RA_kwDOCa0F0M4HWGU3", + "name": "SHA256SUMS", + "label": "", + "uploader": { + "login": "indygreg", + "id": 342993, + "node_id": "MDQ6VXNlcjM0Mjk5Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indygreg", + "html_url": "https://github.com/indygreg", + "followers_url": "https://api.github.com/users/indygreg/followers", + "following_url": "https://api.github.com/users/indygreg/following{/other_user}", + "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", + "organizations_url": "https://api.github.com/users/indygreg/orgs", + "repos_url": "https://api.github.com/users/indygreg/repos", + "events_url": "https://api.github.com/users/indygreg/events{/privacy}", + "received_events_url": "https://api.github.com/users/indygreg/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 33196, + "download_count": 1955, + "created_at": "2023-08-26T15:40:13Z", + "updated_at": "2023-08-26T15:40:13Z", + "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/SHA256SUMS" + } + ], + "tarball_url": "https://api.github.com/repos/indygreg/python-build-standalone/tarball/20230826", + "zipball_url": "https://api.github.com/repos/indygreg/python-build-standalone/zipball/20230826", + "body": "* CPython 3.11.4 -> 3.11.5\r\n* CPython 3.10.12 -> 3.10.13\r\n* CPython 3.9.17 -> 3.9.18\r\n* CPython 3.8.16 -> 3.8.17\r\n* setuptools 68.0.0 -> 68.1.2\r\n* SQLite 3.42 -> 3.43\r\n* OpenSSL 1.1.1u -> 1.1.1v\r\n* binutils 2.40 -> 2.41", + "reactions": { + "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599/reactions", + "total_count": 4, + "+1": 3, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 1, + "rocket": 0, + "eyes": 0 + } +} From bc8b91de8faaab7878938cddab5b348ec97e784f Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 28 Jun 2024 05:58:50 +0530 Subject: [PATCH 02/15] early return --- src/yen/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yen/github.py b/src/yen/github.py index 107e45a..8c795fe 100644 --- a/src/yen/github.py +++ b/src/yen/github.py @@ -67,7 +67,7 @@ def get_latest_python_releases(is_linux_i686: bool) -> list[Any]: if is_linux_i686: data_file = os.path.join(os.path.dirname(__file__), "linux_i686_release.json") with open(data_file) as data: - release_data = json.load(data) + return json.load(data) latest_release_url = urllib.parse.urljoin(GITHUB_API_RELEASES_URL, "latest") try: From 4f974bcfd1581e0fc0b0755bd229920b3ce79689 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 28 Jun 2024 18:44:28 +0530 Subject: [PATCH 03/15] Add types, and set `YEN_PYTHONS_PATH` to test it --- .gitignore | 1 + scripts/trim_github_release_data.py | 10 ++++++++ src/yen/downloader.py | 3 ++- src/yen/github.py | 36 +++++++++++++++++++++++------ tests/yen_test.py | 14 ++++++++--- 5 files changed, 53 insertions(+), 11 deletions(-) create mode 100644 scripts/trim_github_release_data.py diff --git a/.gitignore b/.gitignore index f58f4ff..e5a70d7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ dist .coverage* # files generated during tests testvenv +tests/yen_pythons tests/yen_packages diff --git a/scripts/trim_github_release_data.py b/scripts/trim_github_release_data.py new file mode 100644 index 0000000..34904b5 --- /dev/null +++ b/scripts/trim_github_release_data.py @@ -0,0 +1,10 @@ +import json +from yen.github import trim_github_release_data + + +def generate_trimmed_release_data(filename: str) -> None: + with open(filename) as file: + data = json.load(file) + + trimmed_data = trim_github_release_data(data) + print(json.dumps(trimmed_data, indent=2)) diff --git a/src/yen/downloader.py b/src/yen/downloader.py index e27458b..5eb9e82 100644 --- a/src/yen/downloader.py +++ b/src/yen/downloader.py @@ -2,6 +2,7 @@ from __future__ import annotations +from http.client import HTTPResponse import os.path import signal from functools import partial @@ -43,7 +44,7 @@ def handle_sigint(_: object, __: object) -> None: def read_url(url: str) -> str: """Reads the contents of the URL.""" - response = urlopen(url) + response: HTTPResponse = urlopen(url) return response.read().decode() diff --git a/src/yen/github.py b/src/yen/github.py index 8c795fe..1712bd7 100644 --- a/src/yen/github.py +++ b/src/yen/github.py @@ -5,14 +5,15 @@ import platform import re import sys +import typing import urllib.error -from typing import Any +from typing import Any, TypedDict import urllib.parse from urllib.request import urlopen LAST_TAG_FOR_I686_LINUX = "118809599" # tag name: "20230826" -MACHINE_SUFFIX = { +MACHINE_SUFFIX: dict[str, dict[str, Any]] = { "Darwin": { "arm64": ["aarch64-apple-darwin-install_only.tar.gz"], "x86_64": ["x86_64-apple-darwin-install_only.tar.gz"], @@ -46,7 +47,28 @@ PYTHON_VERSION_REGEX = re.compile(r"cpython-(\d+\.\d+\.\d+)") -def fallback_release_data() -> dict[str, Any]: +class GitHubReleaseData(TypedDict): + id: int + html_url: str + assets: list[GitHubAsset] + + +class GitHubAsset(TypedDict): + browser_download_url: str + + +def trim_github_release_data(release_data: dict[str, Any]) -> GitHubReleaseData: + return { + "id": release_data["id"], + "html_url": release_data["html_url"], + "assets": [ + {"browser_download_url": asset["browser_download_url"]} + for asset in release_data["assets"] + ], + } + + +def fallback_release_data() -> GitHubReleaseData: """Returns the fallback release data, for when GitHub API gives an error.""" print( "\033[33mWarning: GitHub unreachable. Using fallback release data.\033[m", @@ -54,25 +76,25 @@ def fallback_release_data() -> dict[str, Any]: ) data_file = os.path.join(os.path.dirname(__file__), "fallback_release_data.json") with open(data_file) as data: - return json.load(data) + return typing.cast(GitHubReleaseData, json.load(data)) class NotAvailable(Exception): """Raised when the asked Python version is not available.""" -def get_latest_python_releases(is_linux_i686: bool) -> list[Any]: +def get_latest_python_releases(is_linux_i686: bool) -> GitHubReleaseData: """Returns the list of python download links from the latest github release.""" # They stopped shipping for 32 bit linux since after the 20230826 tag if is_linux_i686: data_file = os.path.join(os.path.dirname(__file__), "linux_i686_release.json") with open(data_file) as data: - return json.load(data) + return typing.cast(GitHubReleaseData, json.load(data)) latest_release_url = urllib.parse.urljoin(GITHUB_API_RELEASES_URL, "latest") try: with urlopen(latest_release_url) as response: - release_data = json.load(response) + release_data = typing.cast(GitHubReleaseData, json.load(response)) except urllib.error.URLError: release_data = fallback_release_data() diff --git a/tests/yen_test.py b/tests/yen_test.py index fb36090..defb167 100644 --- a/tests/yen_test.py +++ b/tests/yen_test.py @@ -6,20 +6,28 @@ import subprocess import sys from textwrap import dedent +import types from typing import Iterator import pytest -import userpath +import userpath # type: ignore[import-untyped] PACKAGES_INSTALL_PATH = os.path.join(os.path.dirname(__file__), "yen_packages") +PYTHON_INSTALLS_PATH = os.path.join(os.path.dirname(__file__), "yen_pythons") + + +def teardown_module(_: types.ModuleType) -> None: + shutil.rmtree(PYTHON_INSTALLS_PATH, ignore_errors=True) @pytest.fixture(autouse=True) def patch_yen_packages_path(monkeypatch: pytest.MonkeyPatch) -> Iterator[None]: """Ensures that YEN_PACKAGES_PATH is set up correctly and cleaned up.""" + monkeypatch.setenv("YEN_PYTHONS_PATH", PYTHON_INSTALLS_PATH) monkeypatch.setenv("YEN_PACKAGES_PATH", PACKAGES_INSTALL_PATH) yield shutil.rmtree(PACKAGES_INSTALL_PATH, ignore_errors=True) + # Pythons can be deleted at the end, no issues def is_in_venv() -> bool: @@ -28,8 +36,8 @@ def is_in_venv() -> bool: return os.path.isfile(os.path.join(bin_parent_folder, "pyvenv.cfg")) -def yen_python_and_rust_path() -> list[str]: - yen_paths: list[tuple[str]] = [] +def yen_python_and_rust_path() -> list[tuple[str, ...]]: + yen_paths: list[tuple[str, ...]] = [] assert is_in_venv() yen_python_path = os.path.join( os.path.dirname(sys.executable), From 5f069349f81a8fcdcbf0e43997bfcafa137d6af8 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 28 Jun 2024 18:44:46 +0530 Subject: [PATCH 04/15] fix toxfile --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 37d9914..73ee01f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37,py38,py39,py310,py311,py311-type +envlist = py38,py39,py310,py311,py312,py312-type skip_missing_interpreters = true [testenv] @@ -7,7 +7,7 @@ passenv = CI deps = -rrequirements-dev.txt commands = pytest -[testenv:py311-type] +[testenv:py312-type] description = Type check with mypy commands = mypy . From afe7162b86c4cf4fa105071817e63e63ba072994 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 28 Jun 2024 19:15:18 +0530 Subject: [PATCH 05/15] Fix script, trim release datas --- scripts/trim_github_release_data.py | 14 +- src/yen/fallback_release_data.json | 18683 +------------------------- src/yen/linux_i686_release.json | 15335 +-------------------- 3 files changed, 18 insertions(+), 34014 deletions(-) diff --git a/scripts/trim_github_release_data.py b/scripts/trim_github_release_data.py index 34904b5..27ab051 100644 --- a/scripts/trim_github_release_data.py +++ b/scripts/trim_github_release_data.py @@ -1,10 +1,20 @@ import json +import sys from yen.github import trim_github_release_data -def generate_trimmed_release_data(filename: str) -> None: +def save_trimmed_release_data(filename: str) -> None: with open(filename) as file: data = json.load(file) trimmed_data = trim_github_release_data(data) - print(json.dumps(trimmed_data, indent=2)) + with open(filename, "w") as file: + json.dump(trimmed_data, file, indent=2) + + +if __name__ == "__main__": + if len(sys.argv) < 2: + print(f"Usage: {sys.orig_argv[0]} {sys.orig_argv[1]} filepath.json") + sys.exit(1) + + save_trimmed_release_data(sys.argv[1]) diff --git a/src/yen/fallback_release_data.json b/src/yen/fallback_release_data.json index b5cde5e..d138986 100644 --- a/src/yen/fallback_release_data.json +++ b/src/yen/fallback_release_data.json @@ -1,20486 +1,1809 @@ { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/151218870", - "assets_url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/151218870/assets", - "upload_url": "https://uploads.github.com/repos/indygreg/python-build-standalone/releases/151218870/assets{?name,label}", - "html_url": "https://github.com/indygreg/python-build-standalone/releases/tag/20240415", "id": 151218870, - "author": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "node_id": "RE_kwDOCa0F0M4JA2q2", - "tag_name": "20240415", - "target_commitish": "d09ff921d92d6da8d8a608eaa850dc8c0f638194", - "name": "20240415", - "draft": false, - "prerelease": false, - "created_at": "2024-04-14T15:56:11Z", - "published_at": "2024-04-15T16:58:46Z", + "html_url": "https://github.com/indygreg/python-build-standalone/releases/tag/20240415", "assets": [ { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716811", - "id": 162716811, - "node_id": "RA_kwDOCa0F0M4JstyL", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23049352, - "download_count": 43, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716816", - "id": 162716816, - "node_id": "RA_kwDOCa0F0M4JstyQ", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716821", - "id": 162716821, - "node_id": "RA_kwDOCa0F0M4JstyV", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17296078, - "download_count": 1920, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716819", - "id": 162716819, - "node_id": "RA_kwDOCa0F0M4JstyT", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 120, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716810", - "id": 162716810, - "node_id": "RA_kwDOCa0F0M4JstyK", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33894522, - "download_count": 813, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:54:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716813", - "id": 162716813, - "node_id": "RA_kwDOCa0F0M4JstyN", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716809", - "id": 162716809, - "node_id": "RA_kwDOCa0F0M4JstyJ", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25031951, - "download_count": 27, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716814", - "id": 162716814, - "node_id": "RA_kwDOCa0F0M4JstyO", - "name": "cpython-3.10.14+20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716822", - "id": 162716822, - "node_id": "RA_kwDOCa0F0M4JstyW", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33646430, - "download_count": 34, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716808", - "id": 162716808, - "node_id": "RA_kwDOCa0F0M4JstyI", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716820", - "id": 162716820, - "node_id": "RA_kwDOCa0F0M4JstyU", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24907073, - "download_count": 699, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716807", - "id": 162716807, - "node_id": "RA_kwDOCa0F0M4JstyH", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 29, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716818", - "id": 162716818, - "node_id": "RA_kwDOCa0F0M4JstyS", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 115359383, - "download_count": 182, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:55:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716815", - "id": 162716815, - "node_id": "RA_kwDOCa0F0M4JstyP", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716817", - "id": 162716817, - "node_id": "RA_kwDOCa0F0M4JstyR", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33791003, - "download_count": 28, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716812", - "id": 162716812, - "node_id": "RA_kwDOCa0F0M4JstyM", - "name": "cpython-3.10.14+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716823", - "id": 162716823, - "node_id": "RA_kwDOCa0F0M4JstyX", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30788328, - "download_count": 21, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716824", - "id": 162716824, - "node_id": "RA_kwDOCa0F0M4JstyY", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716826", - "id": 162716826, - "node_id": "RA_kwDOCa0F0M4Jstya", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24707402, - "download_count": 25, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716825", - "id": 162716825, - "node_id": "RA_kwDOCa0F0M4JstyZ", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716830", - "id": 162716830, - "node_id": "RA_kwDOCa0F0M4Jstye", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 104851569, - "download_count": 87, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:55:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716829", - "id": 162716829, - "node_id": "RA_kwDOCa0F0M4Jstyd", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716828", - "id": 162716828, - "node_id": "RA_kwDOCa0F0M4Jstyc", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30873614, - "download_count": 22, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716827", - "id": 162716827, - "node_id": "RA_kwDOCa0F0M4Jstyb", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:22Z", - "updated_at": "2024-04-17T20:53:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716831", - "id": 162716831, - "node_id": "RA_kwDOCa0F0M4Jstyf", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30592248, - "download_count": 22, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:53:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716832", - "id": 162716832, - "node_id": "RA_kwDOCa0F0M4Jstyg", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:53:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716834", - "id": 162716834, - "node_id": "RA_kwDOCa0F0M4Jstyi", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24150540, - "download_count": 25, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:53:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716833", - "id": 162716833, - "node_id": "RA_kwDOCa0F0M4Jstyh", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:53:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716835", - "id": 162716835, - "node_id": "RA_kwDOCa0F0M4Jstyj", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 104724130, - "download_count": 83, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:55:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716836", - "id": 162716836, - "node_id": "RA_kwDOCa0F0M4Jstyk", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:53:23Z", - "updated_at": "2024-04-17T20:53:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716838", - "id": 162716838, - "node_id": "RA_kwDOCa0F0M4Jstym", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30828379, - "download_count": 25, - "created_at": "2024-04-17T20:53:24Z", - "updated_at": "2024-04-17T20:53:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716890", - "id": 162716890, - "node_id": "RA_kwDOCa0F0M4Jstza", - "name": "cpython-3.10.14+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:43Z", - "updated_at": "2024-04-17T20:53:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716892", - "id": 162716892, - "node_id": "RA_kwDOCa0F0M4Jstzc", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35380152, - "download_count": 47, - "created_at": "2024-04-17T20:53:43Z", - "updated_at": "2024-04-17T20:54:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716913", - "id": 162716913, - "node_id": "RA_kwDOCa0F0M4Jstzx", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:48Z", - "updated_at": "2024-04-17T20:53:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716914", - "id": 162716914, - "node_id": "RA_kwDOCa0F0M4Jstzy", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34273930, - "download_count": 90, - "created_at": "2024-04-17T20:53:48Z", - "updated_at": "2024-04-17T20:54:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716916", - "id": 162716916, - "node_id": "RA_kwDOCa0F0M4Jstz0", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:53:48Z", - "updated_at": "2024-04-17T20:53:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716918", - "id": 162716918, - "node_id": "RA_kwDOCa0F0M4Jstz2", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35380152, - "download_count": 42, - "created_at": "2024-04-17T20:53:49Z", - "updated_at": "2024-04-17T20:54:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716924", - "id": 162716924, - "node_id": "RA_kwDOCa0F0M4Jstz8", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:53:50Z", - "updated_at": "2024-04-17T20:53:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716925", - "id": 162716925, - "node_id": "RA_kwDOCa0F0M4Jstz9", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34273930, - "download_count": 85, - "created_at": "2024-04-17T20:53:50Z", - "updated_at": "2024-04-17T20:54:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716928", - "id": 162716928, - "node_id": "RA_kwDOCa0F0M4Jst0A", - "name": "cpython-3.10.14+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:53:51Z", - "updated_at": "2024-04-17T20:53:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716929", - "id": 162716929, - "node_id": "RA_kwDOCa0F0M4Jst0B", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35129040, - "download_count": 22, - "created_at": "2024-04-17T20:53:51Z", - "updated_at": "2024-04-17T20:54:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716934", - "id": 162716934, - "node_id": "RA_kwDOCa0F0M4Jst0G", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:53:51Z", - "updated_at": "2024-04-17T20:53:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716936", - "id": 162716936, - "node_id": "RA_kwDOCa0F0M4Jst0I", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25748386, - "download_count": 49, - "created_at": "2024-04-17T20:53:52Z", - "updated_at": "2024-04-17T20:54:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716939", - "id": 162716939, - "node_id": "RA_kwDOCa0F0M4Jst0L", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T20:53:53Z", - "updated_at": "2024-04-17T20:53:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716943", - "id": 162716943, - "node_id": "RA_kwDOCa0F0M4Jst0P", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 125499192, - "download_count": 79, - "created_at": "2024-04-17T20:53:53Z", - "updated_at": "2024-04-17T20:55:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716948", - "id": 162716948, - "node_id": "RA_kwDOCa0F0M4Jst0U", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:54Z", - "updated_at": "2024-04-17T20:53:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716952", - "id": 162716952, - "node_id": "RA_kwDOCa0F0M4Jst0Y", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35222339, - "download_count": 21, - "created_at": "2024-04-17T20:53:55Z", - "updated_at": "2024-04-17T20:54:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716953", - "id": 162716953, - "node_id": "RA_kwDOCa0F0M4Jst0Z", - "name": "cpython-3.10.14+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:53:55Z", - "updated_at": "2024-04-17T20:53:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716955", - "id": 162716955, - "node_id": "RA_kwDOCa0F0M4Jst0b", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37551524, - "download_count": 21, - "created_at": "2024-04-17T20:53:55Z", - "updated_at": "2024-04-17T20:54:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716970", - "id": 162716970, - "node_id": "RA_kwDOCa0F0M4Jst0q", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:53:59Z", - "updated_at": "2024-04-17T20:53:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716974", - "id": 162716974, - "node_id": "RA_kwDOCa0F0M4Jst0u", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26341931, - "download_count": 46, - "created_at": "2024-04-17T20:53:59Z", - "updated_at": "2024-04-17T20:54:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716977", - "id": 162716977, - "node_id": "RA_kwDOCa0F0M4Jst0x", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T20:53:59Z", - "updated_at": "2024-04-17T20:54:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716978", - "id": 162716978, - "node_id": "RA_kwDOCa0F0M4Jst0y", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 127010407, - "download_count": 80, - "created_at": "2024-04-17T20:54:00Z", - "updated_at": "2024-04-17T20:56:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716981", - "id": 162716981, - "node_id": "RA_kwDOCa0F0M4Jst01", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:00Z", - "updated_at": "2024-04-17T20:54:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716983", - "id": 162716983, - "node_id": "RA_kwDOCa0F0M4Jst03", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38024185, - "download_count": 21, - "created_at": "2024-04-17T20:54:01Z", - "updated_at": "2024-04-17T20:54:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716984", - "id": 162716984, - "node_id": "RA_kwDOCa0F0M4Jst04", - "name": "cpython-3.10.14+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:01Z", - "updated_at": "2024-04-17T20:54:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162716985", - "id": 162716985, - "node_id": "RA_kwDOCa0F0M4Jst05", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23035234, - "download_count": 20, - "created_at": "2024-04-17T20:54:02Z", - "updated_at": "2024-04-17T20:54:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717048", - "id": 162717048, - "node_id": "RA_kwDOCa0F0M4Jst14", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:14Z", - "updated_at": "2024-04-17T20:54:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717055", - "id": 162717055, - "node_id": "RA_kwDOCa0F0M4Jst1_", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17642458, - "download_count": 764, - "created_at": "2024-04-17T20:54:14Z", - "updated_at": "2024-04-17T20:54:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717053", - "id": 162717053, - "node_id": "RA_kwDOCa0F0M4Jst19", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2024-04-17T20:54:14Z", - "updated_at": "2024-04-17T20:54:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717057", - "id": 162717057, - "node_id": "RA_kwDOCa0F0M4Jst2B", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33755503, - "download_count": 309, - "created_at": "2024-04-17T20:54:15Z", - "updated_at": "2024-04-17T20:54:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717083", - "id": 162717083, - "node_id": "RA_kwDOCa0F0M4Jst2b", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:54:20Z", - "updated_at": "2024-04-17T20:54:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717087", - "id": 162717087, - "node_id": "RA_kwDOCa0F0M4Jst2f", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24615188, - "download_count": 21, - "created_at": "2024-04-17T20:54:21Z", - "updated_at": "2024-04-17T20:54:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717090", - "id": 162717090, - "node_id": "RA_kwDOCa0F0M4Jst2i", - "name": "cpython-3.10.14+20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2024-04-17T20:54:22Z", - "updated_at": "2024-04-17T20:54:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717092", - "id": 162717092, - "node_id": "RA_kwDOCa0F0M4Jst2k", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36224175, - "download_count": 1926, - "created_at": "2024-04-17T20:54:23Z", - "updated_at": "2024-04-17T20:54:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717093", - "id": 162717093, - "node_id": "RA_kwDOCa0F0M4Jst2l", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:54:23Z", - "updated_at": "2024-04-17T20:54:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717103", - "id": 162717103, - "node_id": "RA_kwDOCa0F0M4Jst2v", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34919621, - "download_count": 92, - "created_at": "2024-04-17T20:54:24Z", - "updated_at": "2024-04-17T20:55:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717097", - "id": 162717097, - "node_id": "RA_kwDOCa0F0M4Jst2p", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T20:54:23Z", - "updated_at": "2024-04-17T20:54:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717102", - "id": 162717102, - "node_id": "RA_kwDOCa0F0M4Jst2u", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36224175, - "download_count": 1478, - "created_at": "2024-04-17T20:54:24Z", - "updated_at": "2024-04-17T20:55:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717101", - "id": 162717101, - "node_id": "RA_kwDOCa0F0M4Jst2t", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 53, - "created_at": "2024-04-17T20:54:24Z", - "updated_at": "2024-04-17T20:54:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717104", - "id": 162717104, - "node_id": "RA_kwDOCa0F0M4Jst2w", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34919621, - "download_count": 608, - "created_at": "2024-04-17T20:54:24Z", - "updated_at": "2024-04-17T20:54:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717114", - "id": 162717114, - "node_id": "RA_kwDOCa0F0M4Jst26", - "name": "cpython-3.10.14+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T20:54:25Z", - "updated_at": "2024-04-17T20:54:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717116", - "id": 162717116, - "node_id": "RA_kwDOCa0F0M4Jst28", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26978380, - "download_count": 23, - "created_at": "2024-04-17T20:54:26Z", - "updated_at": "2024-04-17T20:54:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717141", - "id": 162717141, - "node_id": "RA_kwDOCa0F0M4Jst3V", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:54:30Z", - "updated_at": "2024-04-17T20:54:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717144", - "id": 162717144, - "node_id": "RA_kwDOCa0F0M4Jst3Y", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27417490, - "download_count": 10882, - "created_at": "2024-04-17T20:54:30Z", - "updated_at": "2024-04-17T20:54:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717145", - "id": 162717145, - "node_id": "RA_kwDOCa0F0M4Jst3Z", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 29, - "created_at": "2024-04-17T20:54:30Z", - "updated_at": "2024-04-17T20:54:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717149", - "id": 162717149, - "node_id": "RA_kwDOCa0F0M4Jst3d", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50110908, - "download_count": 10934, - "created_at": "2024-04-17T20:54:31Z", - "updated_at": "2024-04-17T20:55:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717159", - "id": 162717159, - "node_id": "RA_kwDOCa0F0M4Jst3n", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:54:32Z", - "updated_at": "2024-04-17T20:54:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717164", - "id": 162717164, - "node_id": "RA_kwDOCa0F0M4Jst3s", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32704340, - "download_count": 36, - "created_at": "2024-04-17T20:54:33Z", - "updated_at": "2024-04-17T20:55:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717241", - "id": 162717241, - "node_id": "RA_kwDOCa0F0M4Jst45", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T20:54:47Z", - "updated_at": "2024-04-17T20:54:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717245", - "id": 162717245, - "node_id": "RA_kwDOCa0F0M4Jst49", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25933777, - "download_count": 19, - "created_at": "2024-04-17T20:54:48Z", - "updated_at": "2024-04-17T20:55:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717251", - "id": 162717251, - "node_id": "RA_kwDOCa0F0M4Jst5D", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:49Z", - "updated_at": "2024-04-17T20:54:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717252", - "id": 162717252, - "node_id": "RA_kwDOCa0F0M4Jst5E", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25688623, - "download_count": 47, - "created_at": "2024-04-17T20:54:49Z", - "updated_at": "2024-04-17T20:55:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717256", - "id": 162717256, - "node_id": "RA_kwDOCa0F0M4Jst5I", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:49Z", - "updated_at": "2024-04-17T20:54:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717259", - "id": 162717259, - "node_id": "RA_kwDOCa0F0M4Jst5L", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40112787, - "download_count": 80, - "created_at": "2024-04-17T20:54:50Z", - "updated_at": "2024-04-17T20:55:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717263", - "id": 162717263, - "node_id": "RA_kwDOCa0F0M4Jst5P", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:54:51Z", - "updated_at": "2024-04-17T20:54:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717264", - "id": 162717264, - "node_id": "RA_kwDOCa0F0M4Jst5Q", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28012034, - "download_count": 21, - "created_at": "2024-04-17T20:54:51Z", - "updated_at": "2024-04-17T20:55:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717271", - "id": 162717271, - "node_id": "RA_kwDOCa0F0M4Jst5X", - "name": "cpython-3.10.14+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:53Z", - "updated_at": "2024-04-17T20:54:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717275", - "id": 162717275, - "node_id": "RA_kwDOCa0F0M4Jst5b", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26932590, - "download_count": 19, - "created_at": "2024-04-17T20:54:54Z", - "updated_at": "2024-04-17T20:55:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717283", - "id": 162717283, - "node_id": "RA_kwDOCa0F0M4Jst5j", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:54:55Z", - "updated_at": "2024-04-17T20:54:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717284", - "id": 162717284, - "node_id": "RA_kwDOCa0F0M4Jst5k", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27298601, - "download_count": 34, - "created_at": "2024-04-17T20:54:55Z", - "updated_at": "2024-04-17T20:55:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717292", - "id": 162717292, - "node_id": "RA_kwDOCa0F0M4Jst5s", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2024-04-17T20:54:57Z", - "updated_at": "2024-04-17T20:54:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717296", - "id": 162717296, - "node_id": "RA_kwDOCa0F0M4Jst5w", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50005212, - "download_count": 78, - "created_at": "2024-04-17T20:54:58Z", - "updated_at": "2024-04-17T20:55:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717309", - "id": 162717309, - "node_id": "RA_kwDOCa0F0M4Jst59", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:01Z", - "updated_at": "2024-04-17T20:55:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717311", - "id": 162717311, - "node_id": "RA_kwDOCa0F0M4Jst5_", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32686615, - "download_count": 21, - "created_at": "2024-04-17T20:55:02Z", - "updated_at": "2024-04-17T20:55:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717318", - "id": 162717318, - "node_id": "RA_kwDOCa0F0M4Jst6G", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:03Z", - "updated_at": "2024-04-17T20:55:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717324", - "id": 162717324, - "node_id": "RA_kwDOCa0F0M4Jst6M", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25926040, - "download_count": 19, - "created_at": "2024-04-17T20:55:04Z", - "updated_at": "2024-04-17T20:55:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717354", - "id": 162717354, - "node_id": "RA_kwDOCa0F0M4Jst6q", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:08Z", - "updated_at": "2024-04-17T20:55:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717355", - "id": 162717355, - "node_id": "RA_kwDOCa0F0M4Jst6r", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25666794, - "download_count": 20, - "created_at": "2024-04-17T20:55:08Z", - "updated_at": "2024-04-17T20:55:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717372", - "id": 162717372, - "node_id": "RA_kwDOCa0F0M4Jst68", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:12Z", - "updated_at": "2024-04-17T20:55:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717374", - "id": 162717374, - "node_id": "RA_kwDOCa0F0M4Jst6-", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40100750, - "download_count": 75, - "created_at": "2024-04-17T20:55:13Z", - "updated_at": "2024-04-17T20:55:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717376", - "id": 162717376, - "node_id": "RA_kwDOCa0F0M4Jst7A", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:13Z", - "updated_at": "2024-04-17T20:55:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717377", - "id": 162717377, - "node_id": "RA_kwDOCa0F0M4Jst7B", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27990082, - "download_count": 20, - "created_at": "2024-04-17T20:55:13Z", - "updated_at": "2024-04-17T20:55:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717378", - "id": 162717378, - "node_id": "RA_kwDOCa0F0M4Jst7C", - "name": "cpython-3.10.14+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:14Z", - "updated_at": "2024-04-17T20:55:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717383", - "id": 162717383, - "node_id": "RA_kwDOCa0F0M4Jst7H", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26950270, - "download_count": 20, - "created_at": "2024-04-17T20:55:14Z", - "updated_at": "2024-04-17T20:55:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717392", - "id": 162717392, - "node_id": "RA_kwDOCa0F0M4Jst7Q", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:18Z", - "updated_at": "2024-04-17T20:55:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717394", - "id": 162717394, - "node_id": "RA_kwDOCa0F0M4Jst7S", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27328295, - "download_count": 1828, - "created_at": "2024-04-17T20:55:18Z", - "updated_at": "2024-04-17T20:55:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717404", - "id": 162717404, - "node_id": "RA_kwDOCa0F0M4Jst7c", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 229, - "created_at": "2024-04-17T20:55:20Z", - "updated_at": "2024-04-17T20:55:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717405", - "id": 162717405, - "node_id": "RA_kwDOCa0F0M4Jst7d", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50027099, - "download_count": 145, - "created_at": "2024-04-17T20:55:20Z", - "updated_at": "2024-04-17T20:56:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717413", - "id": 162717413, - "node_id": "RA_kwDOCa0F0M4Jst7l", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:55:21Z", - "updated_at": "2024-04-17T20:55:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717417", - "id": 162717417, - "node_id": "RA_kwDOCa0F0M4Jst7p", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32767329, - "download_count": 22, - "created_at": "2024-04-17T20:55:22Z", - "updated_at": "2024-04-17T20:55:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717422", - "id": 162717422, - "node_id": "RA_kwDOCa0F0M4Jst7u", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:23Z", - "updated_at": "2024-04-17T20:55:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717425", - "id": 162717425, - "node_id": "RA_kwDOCa0F0M4Jst7x", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25967771, - "download_count": 20, - "created_at": "2024-04-17T20:55:24Z", - "updated_at": "2024-04-17T20:55:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717441", - "id": 162717441, - "node_id": "RA_kwDOCa0F0M4Jst8B", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:28Z", - "updated_at": "2024-04-17T20:55:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717442", - "id": 162717442, - "node_id": "RA_kwDOCa0F0M4Jst8C", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25757748, - "download_count": 21, - "created_at": "2024-04-17T20:55:28Z", - "updated_at": "2024-04-17T20:55:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717456", - "id": 162717456, - "node_id": "RA_kwDOCa0F0M4Jst8Q", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:32Z", - "updated_at": "2024-04-17T20:55:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717457", - "id": 162717457, - "node_id": "RA_kwDOCa0F0M4Jst8R", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40279962, - "download_count": 76, - "created_at": "2024-04-17T20:55:32Z", - "updated_at": "2024-04-17T20:56:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717466", - "id": 162717466, - "node_id": "RA_kwDOCa0F0M4Jst8a", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:35Z", - "updated_at": "2024-04-17T20:55:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717471", - "id": 162717471, - "node_id": "RA_kwDOCa0F0M4Jst8f", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28067385, - "download_count": 20, - "created_at": "2024-04-17T20:55:35Z", - "updated_at": "2024-04-17T20:56:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717472", - "id": 162717472, - "node_id": "RA_kwDOCa0F0M4Jst8g", - "name": "cpython-3.10.14+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:36Z", - "updated_at": "2024-04-17T20:55:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717473", - "id": 162717473, - "node_id": "RA_kwDOCa0F0M4Jst8h", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26950969, - "download_count": 20, - "created_at": "2024-04-17T20:55:36Z", - "updated_at": "2024-04-17T20:56:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717480", - "id": 162717480, - "node_id": "RA_kwDOCa0F0M4Jst8o", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:55:42Z", - "updated_at": "2024-04-17T20:55:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717481", - "id": 162717481, - "node_id": "RA_kwDOCa0F0M4Jst8p", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26649736, - "download_count": 172, - "created_at": "2024-04-17T20:55:42Z", - "updated_at": "2024-04-17T20:56:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717482", - "id": 162717482, - "node_id": "RA_kwDOCa0F0M4Jst8q", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:42Z", - "updated_at": "2024-04-17T20:55:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717484", - "id": 162717484, - "node_id": "RA_kwDOCa0F0M4Jst8s", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48261992, - "download_count": 75, - "created_at": "2024-04-17T20:55:43Z", - "updated_at": "2024-04-17T20:56:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717486", - "id": 162717486, - "node_id": "RA_kwDOCa0F0M4Jst8u", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:44Z", - "updated_at": "2024-04-17T20:55:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717489", - "id": 162717489, - "node_id": "RA_kwDOCa0F0M4Jst8x", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31240710, - "download_count": 19, - "created_at": "2024-04-17T20:55:44Z", - "updated_at": "2024-04-17T20:56:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717506", - "id": 162717506, - "node_id": "RA_kwDOCa0F0M4Jst9C", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:48Z", - "updated_at": "2024-04-17T20:55:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717514", - "id": 162717514, - "node_id": "RA_kwDOCa0F0M4Jst9K", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25971727, - "download_count": 19, - "created_at": "2024-04-17T20:55:49Z", - "updated_at": "2024-04-17T20:56:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717512", - "id": 162717512, - "node_id": "RA_kwDOCa0F0M4Jst9I", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:49Z", - "updated_at": "2024-04-17T20:55:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717515", - "id": 162717515, - "node_id": "RA_kwDOCa0F0M4Jst9L", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25760044, - "download_count": 20, - "created_at": "2024-04-17T20:55:49Z", - "updated_at": "2024-04-17T20:56:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717521", - "id": 162717521, - "node_id": "RA_kwDOCa0F0M4Jst9R", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:50Z", - "updated_at": "2024-04-17T20:55:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717523", - "id": 162717523, - "node_id": "RA_kwDOCa0F0M4Jst9T", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40301859, - "download_count": 76, - "created_at": "2024-04-17T20:55:51Z", - "updated_at": "2024-04-17T20:56:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717524", - "id": 162717524, - "node_id": "RA_kwDOCa0F0M4Jst9U", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:51Z", - "updated_at": "2024-04-17T20:55:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717527", - "id": 162717527, - "node_id": "RA_kwDOCa0F0M4Jst9X", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28068701, - "download_count": 19, - "created_at": "2024-04-17T20:55:52Z", - "updated_at": "2024-04-17T20:56:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717525", - "id": 162717525, - "node_id": "RA_kwDOCa0F0M4Jst9V", - "name": "cpython-3.10.14+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:52Z", - "updated_at": "2024-04-17T20:55:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717530", - "id": 162717530, - "node_id": "RA_kwDOCa0F0M4Jst9a", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27881901, - "download_count": 20, - "created_at": "2024-04-17T20:55:52Z", - "updated_at": "2024-04-17T20:56:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717529", - "id": 162717529, - "node_id": "RA_kwDOCa0F0M4Jst9Z", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:55:52Z", - "updated_at": "2024-04-17T20:55:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717531", - "id": 162717531, - "node_id": "RA_kwDOCa0F0M4Jst9b", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17915401, - "download_count": 4229, - "created_at": "2024-04-17T20:55:52Z", - "updated_at": "2024-04-17T20:56:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717544", - "id": 162717544, - "node_id": "RA_kwDOCa0F0M4Jst9o", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 112, - "created_at": "2024-04-17T20:55:57Z", - "updated_at": "2024-04-17T20:55:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717545", - "id": 162717545, - "node_id": "RA_kwDOCa0F0M4Jst9p", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37380004, - "download_count": 1050, - "created_at": "2024-04-17T20:55:58Z", - "updated_at": "2024-04-17T20:56:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717555", - "id": 162717555, - "node_id": "RA_kwDOCa0F0M4Jst9z", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:56:00Z", - "updated_at": "2024-04-17T20:56:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717556", - "id": 162717556, - "node_id": "RA_kwDOCa0F0M4Jst90", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26742360, - "download_count": 20, - "created_at": "2024-04-17T20:56:00Z", - "updated_at": "2024-04-17T20:56:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717558", - "id": 162717558, - "node_id": "RA_kwDOCa0F0M4Jst92", - "name": "cpython-3.11.9+20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:56:01Z", - "updated_at": "2024-04-17T20:56:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717559", - "id": 162717559, - "node_id": "RA_kwDOCa0F0M4Jst93", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39872323, - "download_count": 19, - "created_at": "2024-04-17T20:56:01Z", - "updated_at": "2024-04-17T20:56:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717561", - "id": 162717561, - "node_id": "RA_kwDOCa0F0M4Jst95", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:56:02Z", - "updated_at": "2024-04-17T20:56:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717563", - "id": 162717563, - "node_id": "RA_kwDOCa0F0M4Jst97", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26061145, - "download_count": 4344, - "created_at": "2024-04-17T20:56:02Z", - "updated_at": "2024-04-17T20:56:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717571", - "id": 162717571, - "node_id": "RA_kwDOCa0F0M4Jst-D", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 107, - "created_at": "2024-04-17T20:56:04Z", - "updated_at": "2024-04-17T20:56:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717574", - "id": 162717574, - "node_id": "RA_kwDOCa0F0M4Jst-G", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 141337514, - "download_count": 201, - "created_at": "2024-04-17T20:56:04Z", - "updated_at": "2024-04-17T20:58:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717595", - "id": 162717595, - "node_id": "RA_kwDOCa0F0M4Jst-b", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:56:10Z", - "updated_at": "2024-04-17T20:56:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717598", - "id": 162717598, - "node_id": "RA_kwDOCa0F0M4Jst-e", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39682270, - "download_count": 21, - "created_at": "2024-04-17T20:56:10Z", - "updated_at": "2024-04-17T20:56:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717611", - "id": 162717611, - "node_id": "RA_kwDOCa0F0M4Jst-r", - "name": "cpython-3.11.9+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:14Z", - "updated_at": "2024-04-17T20:56:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717614", - "id": 162717614, - "node_id": "RA_kwDOCa0F0M4Jst-u", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36524521, - "download_count": 19, - "created_at": "2024-04-17T20:56:14Z", - "updated_at": "2024-04-17T20:56:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717626", - "id": 162717626, - "node_id": "RA_kwDOCa0F0M4Jst-6", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:16Z", - "updated_at": "2024-04-17T20:56:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717624", - "id": 162717624, - "node_id": "RA_kwDOCa0F0M4Jst-4", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25830775, - "download_count": 17, - "created_at": "2024-04-17T20:56:16Z", - "updated_at": "2024-04-17T20:56:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717629", - "id": 162717629, - "node_id": "RA_kwDOCa0F0M4Jst-9", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:16Z", - "updated_at": "2024-04-17T20:56:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717632", - "id": 162717632, - "node_id": "RA_kwDOCa0F0M4Jst_A", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 117324499, - "download_count": 73, - "created_at": "2024-04-17T20:56:17Z", - "updated_at": "2024-04-17T20:58:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717633", - "id": 162717633, - "node_id": "RA_kwDOCa0F0M4Jst_B", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:56:17Z", - "updated_at": "2024-04-17T20:56:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717639", - "id": 162717639, - "node_id": "RA_kwDOCa0F0M4Jst_H", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36091933, - "download_count": 19, - "created_at": "2024-04-17T20:56:17Z", - "updated_at": "2024-04-17T20:57:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717644", - "id": 162717644, - "node_id": "RA_kwDOCa0F0M4Jst_M", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:19Z", - "updated_at": "2024-04-17T20:56:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717648", - "id": 162717648, - "node_id": "RA_kwDOCa0F0M4Jst_Q", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34362571, - "download_count": 19, - "created_at": "2024-04-17T20:56:20Z", - "updated_at": "2024-04-17T20:56:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717649", - "id": 162717649, - "node_id": "RA_kwDOCa0F0M4Jst_R", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:56:20Z", - "updated_at": "2024-04-17T20:56:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717650", - "id": 162717650, - "node_id": "RA_kwDOCa0F0M4Jst_S", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25266006, - "download_count": 16, - "created_at": "2024-04-17T20:56:20Z", - "updated_at": "2024-04-17T20:56:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717651", - "id": 162717651, - "node_id": "RA_kwDOCa0F0M4Jst_T", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:20Z", - "updated_at": "2024-04-17T20:56:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717653", - "id": 162717653, - "node_id": "RA_kwDOCa0F0M4Jst_V", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 117067388, - "download_count": 75, - "created_at": "2024-04-17T20:56:21Z", - "updated_at": "2024-04-17T20:58:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717656", - "id": 162717656, - "node_id": "RA_kwDOCa0F0M4Jst_Y", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:56:24Z", - "updated_at": "2024-04-17T20:56:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717657", - "id": 162717657, - "node_id": "RA_kwDOCa0F0M4Jst_Z", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34236248, - "download_count": 19, - "created_at": "2024-04-17T20:56:24Z", - "updated_at": "2024-04-17T20:57:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717662", - "id": 162717662, - "node_id": "RA_kwDOCa0F0M4Jst_e", - "name": "cpython-3.11.9+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:26Z", - "updated_at": "2024-04-17T20:56:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717663", - "id": 162717663, - "node_id": "RA_kwDOCa0F0M4Jst_f", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40295259, - "download_count": 26, - "created_at": "2024-04-17T20:56:27Z", - "updated_at": "2024-04-17T20:56:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717664", - "id": 162717664, - "node_id": "RA_kwDOCa0F0M4Jst_g", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:28Z", - "updated_at": "2024-04-17T20:56:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717669", - "id": 162717669, - "node_id": "RA_kwDOCa0F0M4Jst_l", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39433087, - "download_count": 76, - "created_at": "2024-04-17T20:56:28Z", - "updated_at": "2024-04-17T20:57:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717678", - "id": 162717678, - "node_id": "RA_kwDOCa0F0M4Jst_u", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:34Z", - "updated_at": "2024-04-17T20:56:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717680", - "id": 162717680, - "node_id": "RA_kwDOCa0F0M4Jst_w", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40295259, - "download_count": 22, - "created_at": "2024-04-17T20:56:34Z", - "updated_at": "2024-04-17T20:57:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717682", - "id": 162717682, - "node_id": "RA_kwDOCa0F0M4Jst_y", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:34Z", - "updated_at": "2024-04-17T20:56:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717684", - "id": 162717684, - "node_id": "RA_kwDOCa0F0M4Jst_0", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39433087, - "download_count": 79, - "created_at": "2024-04-17T20:56:35Z", - "updated_at": "2024-04-17T20:57:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717686", - "id": 162717686, - "node_id": "RA_kwDOCa0F0M4Jst_2", - "name": "cpython-3.11.9+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:56:36Z", - "updated_at": "2024-04-17T20:56:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717689", - "id": 162717689, - "node_id": "RA_kwDOCa0F0M4Jst_5", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42782784, - "download_count": 19, - "created_at": "2024-04-17T20:56:36Z", - "updated_at": "2024-04-17T20:57:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717712", - "id": 162717712, - "node_id": "RA_kwDOCa0F0M4JsuAQ", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:56:46Z", - "updated_at": "2024-04-17T20:56:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717713", - "id": 162717713, - "node_id": "RA_kwDOCa0F0M4JsuAR", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26914515, - "download_count": 1126, - "created_at": "2024-04-17T20:56:46Z", - "updated_at": "2024-04-17T20:57:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717715", - "id": 162717715, - "node_id": "RA_kwDOCa0F0M4JsuAT", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:56:46Z", - "updated_at": "2024-04-17T20:56:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717716", - "id": 162717716, - "node_id": "RA_kwDOCa0F0M4JsuAU", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 142762452, - "download_count": 73, - "created_at": "2024-04-17T20:56:47Z", - "updated_at": "2024-04-17T20:59:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717717", - "id": 162717717, - "node_id": "RA_kwDOCa0F0M4JsuAV", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:47Z", - "updated_at": "2024-04-17T20:56:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717718", - "id": 162717718, - "node_id": "RA_kwDOCa0F0M4JsuAW", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42827016, - "download_count": 19, - "created_at": "2024-04-17T20:56:47Z", - "updated_at": "2024-04-17T20:57:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717736", - "id": 162717736, - "node_id": "RA_kwDOCa0F0M4JsuAo", - "name": "cpython-3.11.9+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:54Z", - "updated_at": "2024-04-17T20:56:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717738", - "id": 162717738, - "node_id": "RA_kwDOCa0F0M4JsuAq", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44389230, - "download_count": 19, - "created_at": "2024-04-17T20:56:54Z", - "updated_at": "2024-04-17T20:57:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717742", - "id": 162717742, - "node_id": "RA_kwDOCa0F0M4JsuAu", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:56:56Z", - "updated_at": "2024-04-17T20:56:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717743", - "id": 162717743, - "node_id": "RA_kwDOCa0F0M4JsuAv", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27607600, - "download_count": 1131, - "created_at": "2024-04-17T20:56:57Z", - "updated_at": "2024-04-17T20:57:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717747", - "id": 162717747, - "node_id": "RA_kwDOCa0F0M4JsuAz", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T20:56:58Z", - "updated_at": "2024-04-17T20:56:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717748", - "id": 162717748, - "node_id": "RA_kwDOCa0F0M4JsuA0", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 147151301, - "download_count": 72, - "created_at": "2024-04-17T20:56:58Z", - "updated_at": "2024-04-17T21:00:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717749", - "id": 162717749, - "node_id": "RA_kwDOCa0F0M4JsuA1", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:56:59Z", - "updated_at": "2024-04-17T20:56:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717751", - "id": 162717751, - "node_id": "RA_kwDOCa0F0M4JsuA3", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44870545, - "download_count": 20, - "created_at": "2024-04-17T20:56:59Z", - "updated_at": "2024-04-17T20:57:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717752", - "id": 162717752, - "node_id": "RA_kwDOCa0F0M4JsuA4", - "name": "cpython-3.11.9+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:57:01Z", - "updated_at": "2024-04-17T20:57:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717753", - "id": 162717753, - "node_id": "RA_kwDOCa0F0M4JsuA5", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27132357, - "download_count": 19, - "created_at": "2024-04-17T20:57:01Z", - "updated_at": "2024-04-17T20:57:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717754", - "id": 162717754, - "node_id": "RA_kwDOCa0F0M4JsuA6", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:57:02Z", - "updated_at": "2024-04-17T20:57:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717756", - "id": 162717756, - "node_id": "RA_kwDOCa0F0M4JsuA8", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 18295939, - "download_count": 3243, - "created_at": "2024-04-17T20:57:02Z", - "updated_at": "2024-04-17T20:57:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717774", - "id": 162717774, - "node_id": "RA_kwDOCa0F0M4JsuBO", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 56, - "created_at": "2024-04-17T20:57:10Z", - "updated_at": "2024-04-17T20:57:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717777", - "id": 162717777, - "node_id": "RA_kwDOCa0F0M4JsuBR", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37304278, - "download_count": 342, - "created_at": "2024-04-17T20:57:11Z", - "updated_at": "2024-04-17T20:57:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717778", - "id": 162717778, - "node_id": "RA_kwDOCa0F0M4JsuBS", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:57:12Z", - "updated_at": "2024-04-17T20:57:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717780", - "id": 162717780, - "node_id": "RA_kwDOCa0F0M4JsuBU", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26315722, - "download_count": 21, - "created_at": "2024-04-17T20:57:13Z", - "updated_at": "2024-04-17T20:57:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717788", - "id": 162717788, - "node_id": "RA_kwDOCa0F0M4JsuBc", - "name": "cpython-3.11.9+20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:57:15Z", - "updated_at": "2024-04-17T20:57:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717791", - "id": 162717791, - "node_id": "RA_kwDOCa0F0M4JsuBf", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41332032, - "download_count": 2254, - "created_at": "2024-04-17T20:57:16Z", - "updated_at": "2024-04-17T20:57:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717792", - "id": 162717792, - "node_id": "RA_kwDOCa0F0M4JsuBg", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T20:57:16Z", - "updated_at": "2024-04-17T20:57:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717793", - "id": 162717793, - "node_id": "RA_kwDOCa0F0M4JsuBh", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40240911, - "download_count": 93, - "created_at": "2024-04-17T20:57:16Z", - "updated_at": "2024-04-17T20:58:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717794", - "id": 162717794, - "node_id": "RA_kwDOCa0F0M4JsuBi", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T20:57:16Z", - "updated_at": "2024-04-17T20:57:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717795", - "id": 162717795, - "node_id": "RA_kwDOCa0F0M4JsuBj", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41332032, - "download_count": 3418, - "created_at": "2024-04-17T20:57:17Z", - "updated_at": "2024-04-17T20:57:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717812", - "id": 162717812, - "node_id": "RA_kwDOCa0F0M4JsuB0", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 31, - "created_at": "2024-04-17T20:57:26Z", - "updated_at": "2024-04-17T20:57:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717815", - "id": 162717815, - "node_id": "RA_kwDOCa0F0M4JsuB3", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40240911, - "download_count": 791, - "created_at": "2024-04-17T20:57:26Z", - "updated_at": "2024-04-17T20:58:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717824", - "id": 162717824, - "node_id": "RA_kwDOCa0F0M4JsuCA", - "name": "cpython-3.11.9+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T20:57:28Z", - "updated_at": "2024-04-17T20:57:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717826", - "id": 162717826, - "node_id": "RA_kwDOCa0F0M4JsuCC", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35492221, - "download_count": 19, - "created_at": "2024-04-17T20:57:29Z", - "updated_at": "2024-04-17T20:58:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717830", - "id": 162717830, - "node_id": "RA_kwDOCa0F0M4JsuCG", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:57:29Z", - "updated_at": "2024-04-17T20:57:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717836", - "id": 162717836, - "node_id": "RA_kwDOCa0F0M4JsuCM", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29812587, - "download_count": 36588, - "created_at": "2024-04-17T20:57:30Z", - "updated_at": "2024-04-17T20:58:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717856", - "id": 162717856, - "node_id": "RA_kwDOCa0F0M4JsuCg", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 162, - "created_at": "2024-04-17T20:57:36Z", - "updated_at": "2024-04-17T20:57:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717858", - "id": 162717858, - "node_id": "RA_kwDOCa0F0M4JsuCi", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 55326914, - "download_count": 11768, - "created_at": "2024-04-17T20:57:37Z", - "updated_at": "2024-04-17T20:58:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717867", - "id": 162717867, - "node_id": "RA_kwDOCa0F0M4JsuCr", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 35, - "created_at": "2024-04-17T20:57:39Z", - "updated_at": "2024-04-17T20:57:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717870", - "id": 162717870, - "node_id": "RA_kwDOCa0F0M4JsuCu", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35207293, - "download_count": 55, - "created_at": "2024-04-17T20:57:40Z", - "updated_at": "2024-04-17T20:58:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717876", - "id": 162717876, - "node_id": "RA_kwDOCa0F0M4JsuC0", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:57:43Z", - "updated_at": "2024-04-17T20:57:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717877", - "id": 162717877, - "node_id": "RA_kwDOCa0F0M4JsuC1", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32043401, - "download_count": 19, - "created_at": "2024-04-17T20:57:43Z", - "updated_at": "2024-04-17T20:58:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717878", - "id": 162717878, - "node_id": "RA_kwDOCa0F0M4JsuC2", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:57:44Z", - "updated_at": "2024-04-17T20:57:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717880", - "id": 162717880, - "node_id": "RA_kwDOCa0F0M4JsuC4", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28058459, - "download_count": 39, - "created_at": "2024-04-17T20:57:44Z", - "updated_at": "2024-04-17T20:58:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717883", - "id": 162717883, - "node_id": "RA_kwDOCa0F0M4JsuC7", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:57:47Z", - "updated_at": "2024-04-17T20:57:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717886", - "id": 162717886, - "node_id": "RA_kwDOCa0F0M4JsuC-", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50996999, - "download_count": 72, - "created_at": "2024-04-17T20:57:47Z", - "updated_at": "2024-04-17T20:58:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717889", - "id": 162717889, - "node_id": "RA_kwDOCa0F0M4JsuDB", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T20:57:49Z", - "updated_at": "2024-04-17T20:57:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717891", - "id": 162717891, - "node_id": "RA_kwDOCa0F0M4JsuDD", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30018761, - "download_count": 20, - "created_at": "2024-04-17T20:57:49Z", - "updated_at": "2024-04-17T20:58:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717909", - "id": 162717909, - "node_id": "RA_kwDOCa0F0M4JsuDV", - "name": "cpython-3.11.9+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:57:56Z", - "updated_at": "2024-04-17T20:57:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717910", - "id": 162717910, - "node_id": "RA_kwDOCa0F0M4JsuDW", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35420722, - "download_count": 19, - "created_at": "2024-04-17T20:57:56Z", - "updated_at": "2024-04-17T20:58:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717931", - "id": 162717931, - "node_id": "RA_kwDOCa0F0M4JsuDr", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:03Z", - "updated_at": "2024-04-17T20:58:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717933", - "id": 162717933, - "node_id": "RA_kwDOCa0F0M4JsuDt", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29570152, - "download_count": 338, - "created_at": "2024-04-17T20:58:03Z", - "updated_at": "2024-04-17T20:58:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717934", - "id": 162717934, - "node_id": "RA_kwDOCa0F0M4JsuDu", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T20:58:03Z", - "updated_at": "2024-04-17T20:58:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717935", - "id": 162717935, - "node_id": "RA_kwDOCa0F0M4JsuDv", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 55048738, - "download_count": 72, - "created_at": "2024-04-17T20:58:04Z", - "updated_at": "2024-04-17T20:58:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717939", - "id": 162717939, - "node_id": "RA_kwDOCa0F0M4JsuDz", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:06Z", - "updated_at": "2024-04-17T20:58:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717941", - "id": 162717941, - "node_id": "RA_kwDOCa0F0M4JsuD1", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35163901, - "download_count": 21, - "created_at": "2024-04-17T20:58:06Z", - "updated_at": "2024-04-17T20:58:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717953", - "id": 162717953, - "node_id": "RA_kwDOCa0F0M4JsuEB", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:58:09Z", - "updated_at": "2024-04-17T20:58:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717955", - "id": 162717955, - "node_id": "RA_kwDOCa0F0M4JsuED", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32021779, - "download_count": 19, - "created_at": "2024-04-17T20:58:09Z", - "updated_at": "2024-04-17T20:58:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717956", - "id": 162717956, - "node_id": "RA_kwDOCa0F0M4JsuEE", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:09Z", - "updated_at": "2024-04-17T20:58:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717957", - "id": 162717957, - "node_id": "RA_kwDOCa0F0M4JsuEF", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28035112, - "download_count": 19, - "created_at": "2024-04-17T20:58:10Z", - "updated_at": "2024-04-17T20:58:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717962", - "id": 162717962, - "node_id": "RA_kwDOCa0F0M4JsuEK", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:15Z", - "updated_at": "2024-04-17T20:58:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717963", - "id": 162717963, - "node_id": "RA_kwDOCa0F0M4JsuEL", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50937468, - "download_count": 71, - "created_at": "2024-04-17T20:58:16Z", - "updated_at": "2024-04-17T20:59:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717964", - "id": 162717964, - "node_id": "RA_kwDOCa0F0M4JsuEM", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:16Z", - "updated_at": "2024-04-17T20:58:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717965", - "id": 162717965, - "node_id": "RA_kwDOCa0F0M4JsuEN", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29978908, - "download_count": 20, - "created_at": "2024-04-17T20:58:17Z", - "updated_at": "2024-04-17T20:58:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717971", - "id": 162717971, - "node_id": "RA_kwDOCa0F0M4JsuET", - "name": "cpython-3.11.9+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:18Z", - "updated_at": "2024-04-17T20:58:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717973", - "id": 162717973, - "node_id": "RA_kwDOCa0F0M4JsuEV", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35504143, - "download_count": 19, - "created_at": "2024-04-17T20:58:19Z", - "updated_at": "2024-04-17T20:59:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717975", - "id": 162717975, - "node_id": "RA_kwDOCa0F0M4JsuEX", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:19Z", - "updated_at": "2024-04-17T20:58:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717979", - "id": 162717979, - "node_id": "RA_kwDOCa0F0M4JsuEb", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29606002, - "download_count": 7066, - "created_at": "2024-04-17T20:58:19Z", - "updated_at": "2024-04-17T20:58:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717978", - "id": 162717978, - "node_id": "RA_kwDOCa0F0M4JsuEa", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 228, - "created_at": "2024-04-17T20:58:19Z", - "updated_at": "2024-04-17T20:58:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162717980", - "id": 162717980, - "node_id": "RA_kwDOCa0F0M4JsuEc", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 55136388, - "download_count": 187, - "created_at": "2024-04-17T20:58:20Z", - "updated_at": "2024-04-17T20:59:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718010", - "id": 162718010, - "node_id": "RA_kwDOCa0F0M4JsuE6", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:58:26Z", - "updated_at": "2024-04-17T20:58:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718014", - "id": 162718014, - "node_id": "RA_kwDOCa0F0M4JsuE-", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35209654, - "download_count": 22, - "created_at": "2024-04-17T20:58:26Z", - "updated_at": "2024-04-17T20:59:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718021", - "id": 162718021, - "node_id": "RA_kwDOCa0F0M4JsuFF", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:58:31Z", - "updated_at": "2024-04-17T20:58:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718023", - "id": 162718023, - "node_id": "RA_kwDOCa0F0M4JsuFH", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32080097, - "download_count": 19, - "created_at": "2024-04-17T20:58:31Z", - "updated_at": "2024-04-17T20:59:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718022", - "id": 162718022, - "node_id": "RA_kwDOCa0F0M4JsuFG", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:31Z", - "updated_at": "2024-04-17T20:58:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718024", - "id": 162718024, - "node_id": "RA_kwDOCa0F0M4JsuFI", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28151670, - "download_count": 25, - "created_at": "2024-04-17T20:58:31Z", - "updated_at": "2024-04-17T20:59:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718026", - "id": 162718026, - "node_id": "RA_kwDOCa0F0M4JsuFK", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:33Z", - "updated_at": "2024-04-17T20:58:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718027", - "id": 162718027, - "node_id": "RA_kwDOCa0F0M4JsuFL", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 51299076, - "download_count": 74, - "created_at": "2024-04-17T20:58:33Z", - "updated_at": "2024-04-17T20:59:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718028", - "id": 162718028, - "node_id": "RA_kwDOCa0F0M4JsuFM", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:33Z", - "updated_at": "2024-04-17T20:58:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718029", - "id": 162718029, - "node_id": "RA_kwDOCa0F0M4JsuFN", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30090466, - "download_count": 20, - "created_at": "2024-04-17T20:58:34Z", - "updated_at": "2024-04-17T20:59:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718030", - "id": 162718030, - "node_id": "RA_kwDOCa0F0M4JsuFO", - "name": "cpython-3.11.9+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:34Z", - "updated_at": "2024-04-17T20:58:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718032", - "id": 162718032, - "node_id": "RA_kwDOCa0F0M4JsuFQ", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35529967, - "download_count": 19, - "created_at": "2024-04-17T20:58:34Z", - "updated_at": "2024-04-17T20:59:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718033", - "id": 162718033, - "node_id": "RA_kwDOCa0F0M4JsuFR", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:34Z", - "updated_at": "2024-04-17T20:58:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718036", - "id": 162718036, - "node_id": "RA_kwDOCa0F0M4JsuFU", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28831208, - "download_count": 209, - "created_at": "2024-04-17T20:58:35Z", - "updated_at": "2024-04-17T20:59:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718052", - "id": 162718052, - "node_id": "RA_kwDOCa0F0M4JsuFk", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:58:42Z", - "updated_at": "2024-04-17T20:58:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718053", - "id": 162718053, - "node_id": "RA_kwDOCa0F0M4JsuFl", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 53095179, - "download_count": 74, - "created_at": "2024-04-17T20:58:43Z", - "updated_at": "2024-04-17T20:59:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718057", - "id": 162718057, - "node_id": "RA_kwDOCa0F0M4JsuFp", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:45Z", - "updated_at": "2024-04-17T20:58:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718059", - "id": 162718059, - "node_id": "RA_kwDOCa0F0M4JsuFr", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33650565, - "download_count": 19, - "created_at": "2024-04-17T20:58:45Z", - "updated_at": "2024-04-17T20:59:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718070", - "id": 162718070, - "node_id": "RA_kwDOCa0F0M4JsuF2", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:50Z", - "updated_at": "2024-04-17T20:58:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718074", - "id": 162718074, - "node_id": "RA_kwDOCa0F0M4JsuF6", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32026018, - "download_count": 19, - "created_at": "2024-04-17T20:58:50Z", - "updated_at": "2024-04-17T20:59:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718073", - "id": 162718073, - "node_id": "RA_kwDOCa0F0M4JsuF5", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:58:50Z", - "updated_at": "2024-04-17T20:58:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718075", - "id": 162718075, - "node_id": "RA_kwDOCa0F0M4JsuF7", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28154689, - "download_count": 18, - "created_at": "2024-04-17T20:58:51Z", - "updated_at": "2024-04-17T20:59:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718112", - "id": 162718112, - "node_id": "RA_kwDOCa0F0M4JsuGg", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:01Z", - "updated_at": "2024-04-17T20:59:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718115", - "id": 162718115, - "node_id": "RA_kwDOCa0F0M4JsuGj", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 51309267, - "download_count": 71, - "created_at": "2024-04-17T20:59:02Z", - "updated_at": "2024-04-17T21:00:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718113", - "id": 162718113, - "node_id": "RA_kwDOCa0F0M4JsuGh", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:01Z", - "updated_at": "2024-04-17T20:59:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718116", - "id": 162718116, - "node_id": "RA_kwDOCa0F0M4JsuGk", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30111399, - "download_count": 19, - "created_at": "2024-04-17T20:59:02Z", - "updated_at": "2024-04-17T20:59:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718119", - "id": 162718119, - "node_id": "RA_kwDOCa0F0M4JsuGn", - "name": "cpython-3.11.9+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:04Z", - "updated_at": "2024-04-17T20:59:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718128", - "id": 162718128, - "node_id": "RA_kwDOCa0F0M4JsuGw", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30496519, - "download_count": 19, - "created_at": "2024-04-17T20:59:05Z", - "updated_at": "2024-04-17T20:59:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718129", - "id": 162718129, - "node_id": "RA_kwDOCa0F0M4JsuGx", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:05Z", - "updated_at": "2024-04-17T20:59:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718130", - "id": 162718130, - "node_id": "RA_kwDOCa0F0M4JsuGy", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 16814925, - "download_count": 4312, - "created_at": "2024-04-17T20:59:06Z", - "updated_at": "2024-04-17T20:59:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718144", - "id": 162718144, - "node_id": "RA_kwDOCa0F0M4JsuHA", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 287, - "created_at": "2024-04-17T20:59:07Z", - "updated_at": "2024-04-17T20:59:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718146", - "id": 162718146, - "node_id": "RA_kwDOCa0F0M4JsuHC", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 49322751, - "download_count": 4656, - "created_at": "2024-04-17T20:59:07Z", - "updated_at": "2024-04-17T21:00:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718152", - "id": 162718152, - "node_id": "RA_kwDOCa0F0M4JsuHI", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 41, - "created_at": "2024-04-17T20:59:08Z", - "updated_at": "2024-04-17T20:59:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718150", - "id": 162718150, - "node_id": "RA_kwDOCa0F0M4JsuHG", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28885042, - "download_count": 22, - "created_at": "2024-04-17T20:59:08Z", - "updated_at": "2024-04-17T20:59:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718155", - "id": 162718155, - "node_id": "RA_kwDOCa0F0M4JsuHL", - "name": "cpython-3.12.3+20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:09Z", - "updated_at": "2024-04-17T20:59:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718163", - "id": 162718163, - "node_id": "RA_kwDOCa0F0M4JsuHT", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50339529, - "download_count": 19, - "created_at": "2024-04-17T20:59:09Z", - "updated_at": "2024-04-17T21:00:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718180", - "id": 162718180, - "node_id": "RA_kwDOCa0F0M4JsuHk", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T20:59:11Z", - "updated_at": "2024-04-17T20:59:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718184", - "id": 162718184, - "node_id": "RA_kwDOCa0F0M4JsuHo", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25626233, - "download_count": 2567, - "created_at": "2024-04-17T20:59:12Z", - "updated_at": "2024-04-17T20:59:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718197", - "id": 162718197, - "node_id": "RA_kwDOCa0F0M4JsuH1", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 66, - "created_at": "2024-04-17T20:59:14Z", - "updated_at": "2024-04-17T20:59:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718199", - "id": 162718199, - "node_id": "RA_kwDOCa0F0M4JsuH3", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 187108923, - "download_count": 1850, - "created_at": "2024-04-17T20:59:14Z", - "updated_at": "2024-04-17T21:02:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718214", - "id": 162718214, - "node_id": "RA_kwDOCa0F0M4JsuIG", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:18Z", - "updated_at": "2024-04-17T20:59:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718216", - "id": 162718216, - "node_id": "RA_kwDOCa0F0M4JsuII", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48850335, - "download_count": 22, - "created_at": "2024-04-17T20:59:19Z", - "updated_at": "2024-04-17T21:00:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718227", - "id": 162718227, - "node_id": "RA_kwDOCa0F0M4JsuIT", - "name": "cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:20Z", - "updated_at": "2024-04-17T20:59:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718228", - "id": 162718228, - "node_id": "RA_kwDOCa0F0M4JsuIU", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42126815, - "download_count": 19, - "created_at": "2024-04-17T20:59:21Z", - "updated_at": "2024-04-17T21:00:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718235", - "id": 162718235, - "node_id": "RA_kwDOCa0F0M4JsuIb", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:24Z", - "updated_at": "2024-04-17T20:59:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718236", - "id": 162718236, - "node_id": "RA_kwDOCa0F0M4JsuIc", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25347689, - "download_count": 27, - "created_at": "2024-04-17T20:59:25Z", - "updated_at": "2024-04-17T20:59:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718240", - "id": 162718240, - "node_id": "RA_kwDOCa0F0M4JsuIg", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:25Z", - "updated_at": "2024-04-17T20:59:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718239", - "id": 162718239, - "node_id": "RA_kwDOCa0F0M4JsuIf", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 173241021, - "download_count": 72, - "created_at": "2024-04-17T20:59:25Z", - "updated_at": "2024-04-17T21:02:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718241", - "id": 162718241, - "node_id": "RA_kwDOCa0F0M4JsuIh", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:59:25Z", - "updated_at": "2024-04-17T20:59:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718243", - "id": 162718243, - "node_id": "RA_kwDOCa0F0M4JsuIj", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41358146, - "download_count": 19, - "created_at": "2024-04-17T20:59:26Z", - "updated_at": "2024-04-17T21:00:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718255", - "id": 162718255, - "node_id": "RA_kwDOCa0F0M4JsuIv", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:28Z", - "updated_at": "2024-04-17T20:59:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718256", - "id": 162718256, - "node_id": "RA_kwDOCa0F0M4JsuIw", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41552587, - "download_count": 19, - "created_at": "2024-04-17T20:59:29Z", - "updated_at": "2024-04-17T21:00:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718260", - "id": 162718260, - "node_id": "RA_kwDOCa0F0M4JsuI0", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:31Z", - "updated_at": "2024-04-17T20:59:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718263", - "id": 162718263, - "node_id": "RA_kwDOCa0F0M4JsuI3", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24805115, - "download_count": 23, - "created_at": "2024-04-17T20:59:31Z", - "updated_at": "2024-04-17T21:00:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718274", - "id": 162718274, - "node_id": "RA_kwDOCa0F0M4JsuJC", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:33Z", - "updated_at": "2024-04-17T20:59:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718275", - "id": 162718275, - "node_id": "RA_kwDOCa0F0M4JsuJD", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 153097538, - "download_count": 70, - "created_at": "2024-04-17T20:59:33Z", - "updated_at": "2024-04-17T21:02:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718277", - "id": 162718277, - "node_id": "RA_kwDOCa0F0M4JsuJF", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T20:59:33Z", - "updated_at": "2024-04-17T20:59:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718278", - "id": 162718278, - "node_id": "RA_kwDOCa0F0M4JsuJG", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41028913, - "download_count": 19, - "created_at": "2024-04-17T20:59:34Z", - "updated_at": "2024-04-17T21:00:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718304", - "id": 162718304, - "node_id": "RA_kwDOCa0F0M4JsuJg", - "name": "cpython-3.12.3+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:39Z", - "updated_at": "2024-04-17T20:59:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718306", - "id": 162718306, - "node_id": "RA_kwDOCa0F0M4JsuJi", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39978982, - "download_count": 44, - "created_at": "2024-04-17T20:59:40Z", - "updated_at": "2024-04-17T21:00:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718340", - "id": 162718340, - "node_id": "RA_kwDOCa0F0M4JsuKE", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T20:59:50Z", - "updated_at": "2024-04-17T20:59:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718346", - "id": 162718346, - "node_id": "RA_kwDOCa0F0M4JsuKK", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41703936, - "download_count": 81, - "created_at": "2024-04-17T20:59:50Z", - "updated_at": "2024-04-17T21:00:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718359", - "id": 162718359, - "node_id": "RA_kwDOCa0F0M4JsuKX", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T20:59:54Z", - "updated_at": "2024-04-17T20:59:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718363", - "id": 162718363, - "node_id": "RA_kwDOCa0F0M4JsuKb", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39978982, - "download_count": 18, - "created_at": "2024-04-17T20:59:54Z", - "updated_at": "2024-04-17T21:00:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718430", - "id": 162718430, - "node_id": "RA_kwDOCa0F0M4JsuLe", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:00:00Z", - "updated_at": "2024-04-17T21:00:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718439", - "id": 162718439, - "node_id": "RA_kwDOCa0F0M4JsuLn", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41703936, - "download_count": 80, - "created_at": "2024-04-17T21:00:00Z", - "updated_at": "2024-04-17T21:00:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718460", - "id": 162718460, - "node_id": "RA_kwDOCa0F0M4JsuL8", - "name": "cpython-3.12.3+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:00:04Z", - "updated_at": "2024-04-17T21:00:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718462", - "id": 162718462, - "node_id": "RA_kwDOCa0F0M4JsuL-", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 52177708, - "download_count": 19, - "created_at": "2024-04-17T21:00:04Z", - "updated_at": "2024-04-17T21:01:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718461", - "id": 162718461, - "node_id": "RA_kwDOCa0F0M4JsuL9", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:00:04Z", - "updated_at": "2024-04-17T21:00:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718466", - "id": 162718466, - "node_id": "RA_kwDOCa0F0M4JsuMC", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26519651, - "download_count": 596, - "created_at": "2024-04-17T21:00:05Z", - "updated_at": "2024-04-17T21:00:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718480", - "id": 162718480, - "node_id": "RA_kwDOCa0F0M4JsuMQ", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T21:00:05Z", - "updated_at": "2024-04-17T21:00:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718489", - "id": 162718489, - "node_id": "RA_kwDOCa0F0M4JsuMZ", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 188635015, - "download_count": 71, - "created_at": "2024-04-17T21:00:06Z", - "updated_at": "2024-04-17T21:03:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718490", - "id": 162718490, - "node_id": "RA_kwDOCa0F0M4JsuMa", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:06Z", - "updated_at": "2024-04-17T21:00:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718495", - "id": 162718495, - "node_id": "RA_kwDOCa0F0M4JsuMf", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50721058, - "download_count": 19, - "created_at": "2024-04-17T21:00:06Z", - "updated_at": "2024-04-17T21:01:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718497", - "id": 162718497, - "node_id": "RA_kwDOCa0F0M4JsuMh", - "name": "cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:07Z", - "updated_at": "2024-04-17T21:00:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718507", - "id": 162718507, - "node_id": "RA_kwDOCa0F0M4JsuMr", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 55127177, - "download_count": 19, - "created_at": "2024-04-17T21:00:08Z", - "updated_at": "2024-04-17T21:01:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718530", - "id": 162718530, - "node_id": "RA_kwDOCa0F0M4JsuNC", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:00:08Z", - "updated_at": "2024-04-17T21:00:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718534", - "id": 162718534, - "node_id": "RA_kwDOCa0F0M4JsuNG", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27291816, - "download_count": 592, - "created_at": "2024-04-17T21:00:09Z", - "updated_at": "2024-04-17T21:00:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718535", - "id": 162718535, - "node_id": "RA_kwDOCa0F0M4JsuNH", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T21:00:09Z", - "updated_at": "2024-04-17T21:00:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718536", - "id": 162718536, - "node_id": "RA_kwDOCa0F0M4JsuNI", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 191863310, - "download_count": 73, - "created_at": "2024-04-17T21:00:09Z", - "updated_at": "2024-04-17T21:03:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718537", - "id": 162718537, - "node_id": "RA_kwDOCa0F0M4JsuNJ", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:09Z", - "updated_at": "2024-04-17T21:00:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718542", - "id": 162718542, - "node_id": "RA_kwDOCa0F0M4JsuNO", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 54918544, - "download_count": 20, - "created_at": "2024-04-17T21:00:10Z", - "updated_at": "2024-04-17T21:01:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718594", - "id": 162718594, - "node_id": "RA_kwDOCa0F0M4JsuOC", - "name": "cpython-3.12.3+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:24Z", - "updated_at": "2024-04-17T21:00:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718595", - "id": 162718595, - "node_id": "RA_kwDOCa0F0M4JsuOD", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29702780, - "download_count": 20, - "created_at": "2024-04-17T21:00:24Z", - "updated_at": "2024-04-17T21:01:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718601", - "id": 162718601, - "node_id": "RA_kwDOCa0F0M4JsuOJ", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:26Z", - "updated_at": "2024-04-17T21:00:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718603", - "id": 162718603, - "node_id": "RA_kwDOCa0F0M4JsuOL", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17151699, - "download_count": 2646, - "created_at": "2024-04-17T21:00:26Z", - "updated_at": "2024-04-17T21:00:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718618", - "id": 162718618, - "node_id": "RA_kwDOCa0F0M4JsuOa", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 144, - "created_at": "2024-04-17T21:00:32Z", - "updated_at": "2024-04-17T21:00:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718625", - "id": 162718625, - "node_id": "RA_kwDOCa0F0M4JsuOh", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 45625429, - "download_count": 1230, - "created_at": "2024-04-17T21:00:32Z", - "updated_at": "2024-04-17T21:01:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718626", - "id": 162718626, - "node_id": "RA_kwDOCa0F0M4JsuOi", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 24, - "created_at": "2024-04-17T21:00:32Z", - "updated_at": "2024-04-17T21:00:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718632", - "id": 162718632, - "node_id": "RA_kwDOCa0F0M4JsuOo", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28514380, - "download_count": 21, - "created_at": "2024-04-17T21:00:33Z", - "updated_at": "2024-04-17T21:01:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718638", - "id": 162718638, - "node_id": "RA_kwDOCa0F0M4JsuOu", - "name": "cpython-3.12.3+20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:00:37Z", - "updated_at": "2024-04-17T21:00:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718641", - "id": 162718641, - "node_id": "RA_kwDOCa0F0M4JsuOx", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41019882, - "download_count": 2712, - "created_at": "2024-04-17T21:00:37Z", - "updated_at": "2024-04-17T21:01:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718640", - "id": 162718640, - "node_id": "RA_kwDOCa0F0M4JsuOw", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T21:00:37Z", - "updated_at": "2024-04-17T21:00:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718644", - "id": 162718644, - "node_id": "RA_kwDOCa0F0M4JsuO0", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42407707, - "download_count": 117, - "created_at": "2024-04-17T21:00:37Z", - "updated_at": "2024-04-17T21:01:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718652", - "id": 162718652, - "node_id": "RA_kwDOCa0F0M4JsuO8", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T21:00:40Z", - "updated_at": "2024-04-17T21:00:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718654", - "id": 162718654, - "node_id": "RA_kwDOCa0F0M4JsuO-", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41019882, - "download_count": 1678, - "created_at": "2024-04-17T21:00:41Z", - "updated_at": "2024-04-17T21:01:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718659", - "id": 162718659, - "node_id": "RA_kwDOCa0F0M4JsuPD", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 248, - "created_at": "2024-04-17T21:00:43Z", - "updated_at": "2024-04-17T21:00:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718664", - "id": 162718664, - "node_id": "RA_kwDOCa0F0M4JsuPI", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42407707, - "download_count": 3018, - "created_at": "2024-04-17T21:00:44Z", - "updated_at": "2024-04-17T21:01:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718708", - "id": 162718708, - "node_id": "RA_kwDOCa0F0M4JsuP0", - "name": "cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 47, - "created_at": "2024-04-17T21:01:00Z", - "updated_at": "2024-04-17T21:01:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718710", - "id": 162718710, - "node_id": "RA_kwDOCa0F0M4JsuP2", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44029429, - "download_count": 22, - "created_at": "2024-04-17T21:01:01Z", - "updated_at": "2024-04-17T21:01:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718717", - "id": 162718717, - "node_id": "RA_kwDOCa0F0M4JsuP9", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:01:03Z", - "updated_at": "2024-04-17T21:01:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718722", - "id": 162718722, - "node_id": "RA_kwDOCa0F0M4JsuQC", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 67368051, - "download_count": 20100, - "created_at": "2024-04-17T21:01:04Z", - "updated_at": "2024-04-17T21:02:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718723", - "id": 162718723, - "node_id": "RA_kwDOCa0F0M4JsuQD", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 29, - "created_at": "2024-04-17T21:01:04Z", - "updated_at": "2024-04-17T21:01:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718727", - "id": 162718727, - "node_id": "RA_kwDOCa0F0M4JsuQH", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 92790897, - "download_count": 64660, - "created_at": "2024-04-17T21:01:04Z", - "updated_at": "2024-04-17T21:03:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718732", - "id": 162718732, - "node_id": "RA_kwDOCa0F0M4JsuQM", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 85, - "created_at": "2024-04-17T21:01:08Z", - "updated_at": "2024-04-17T21:01:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718733", - "id": 162718733, - "node_id": "RA_kwDOCa0F0M4JsuQN", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50032145, - "download_count": 32, - "created_at": "2024-04-17T21:01:08Z", - "updated_at": "2024-04-17T21:01:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718734", - "id": 162718734, - "node_id": "RA_kwDOCa0F0M4JsuQO", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T21:01:11Z", - "updated_at": "2024-04-17T21:01:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718736", - "id": 162718736, - "node_id": "RA_kwDOCa0F0M4JsuQQ", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35218053, - "download_count": 22, - "created_at": "2024-04-17T21:01:12Z", - "updated_at": "2024-04-17T21:01:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718743", - "id": 162718743, - "node_id": "RA_kwDOCa0F0M4JsuQX", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:16Z", - "updated_at": "2024-04-17T21:01:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718750", - "id": 162718750, - "node_id": "RA_kwDOCa0F0M4JsuQe", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50879261, - "download_count": 156, - "created_at": "2024-04-17T21:01:16Z", - "updated_at": "2024-04-17T21:02:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718751", - "id": 162718751, - "node_id": "RA_kwDOCa0F0M4JsuQf", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:01:17Z", - "updated_at": "2024-04-17T21:01:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718753", - "id": 162718753, - "node_id": "RA_kwDOCa0F0M4JsuQh", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 78359111, - "download_count": 77, - "created_at": "2024-04-17T21:01:17Z", - "updated_at": "2024-04-17T21:02:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718757", - "id": 162718757, - "node_id": "RA_kwDOCa0F0M4JsuQl", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:01:18Z", - "updated_at": "2024-04-17T21:01:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718758", - "id": 162718758, - "node_id": "RA_kwDOCa0F0M4JsuQm", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33551936, - "download_count": 20, - "created_at": "2024-04-17T21:01:19Z", - "updated_at": "2024-04-17T21:01:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718766", - "id": 162718766, - "node_id": "RA_kwDOCa0F0M4JsuQu", - "name": "cpython-3.12.3+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:24Z", - "updated_at": "2024-04-17T21:01:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718768", - "id": 162718768, - "node_id": "RA_kwDOCa0F0M4JsuQw", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44170699, - "download_count": 20, - "created_at": "2024-04-17T21:01:24Z", - "updated_at": "2024-04-17T21:02:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718776", - "id": 162718776, - "node_id": "RA_kwDOCa0F0M4JsuQ4", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:27Z", - "updated_at": "2024-04-17T21:01:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718784", - "id": 162718784, - "node_id": "RA_kwDOCa0F0M4JsuRA", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 61225392, - "download_count": 433, - "created_at": "2024-04-17T21:01:27Z", - "updated_at": "2024-04-17T21:02:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718798", - "id": 162718798, - "node_id": "RA_kwDOCa0F0M4JsuRO", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2024-04-17T21:01:33Z", - "updated_at": "2024-04-17T21:01:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718799", - "id": 162718799, - "node_id": "RA_kwDOCa0F0M4JsuRP", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 89703222, - "download_count": 85, - "created_at": "2024-04-17T21:01:33Z", - "updated_at": "2024-04-17T21:03:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718884", - "id": 162718884, - "node_id": "RA_kwDOCa0F0M4JsuSk", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:46Z", - "updated_at": "2024-04-17T21:01:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718885", - "id": 162718885, - "node_id": "RA_kwDOCa0F0M4JsuSl", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 49426432, - "download_count": 21, - "created_at": "2024-04-17T21:01:47Z", - "updated_at": "2024-04-17T21:02:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718887", - "id": 162718887, - "node_id": "RA_kwDOCa0F0M4JsuSn", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:47Z", - "updated_at": "2024-04-17T21:01:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718890", - "id": 162718890, - "node_id": "RA_kwDOCa0F0M4JsuSq", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35189822, - "download_count": 19, - "created_at": "2024-04-17T21:01:47Z", - "updated_at": "2024-04-17T21:02:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718915", - "id": 162718915, - "node_id": "RA_kwDOCa0F0M4JsuTD", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:53Z", - "updated_at": "2024-04-17T21:01:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718923", - "id": 162718923, - "node_id": "RA_kwDOCa0F0M4JsuTL", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50854507, - "download_count": 24, - "created_at": "2024-04-17T21:01:54Z", - "updated_at": "2024-04-17T21:02:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718940", - "id": 162718940, - "node_id": "RA_kwDOCa0F0M4JsuTc", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:01:57Z", - "updated_at": "2024-04-17T21:01:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718943", - "id": 162718943, - "node_id": "RA_kwDOCa0F0M4JsuTf", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 78254849, - "download_count": 70, - "created_at": "2024-04-17T21:01:58Z", - "updated_at": "2024-04-17T21:03:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718946", - "id": 162718946, - "node_id": "RA_kwDOCa0F0M4JsuTi", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:03Z", - "updated_at": "2024-04-17T21:02:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718949", - "id": 162718949, - "node_id": "RA_kwDOCa0F0M4JsuTl", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33554286, - "download_count": 20, - "created_at": "2024-04-17T21:02:04Z", - "updated_at": "2024-04-17T21:02:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718954", - "id": 162718954, - "node_id": "RA_kwDOCa0F0M4JsuTq", - "name": "cpython-3.12.3+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:06Z", - "updated_at": "2024-04-17T21:02:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718956", - "id": 162718956, - "node_id": "RA_kwDOCa0F0M4JsuTs", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44259271, - "download_count": 21, - "created_at": "2024-04-17T21:02:06Z", - "updated_at": "2024-04-17T21:02:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718970", - "id": 162718970, - "node_id": "RA_kwDOCa0F0M4JsuT6", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:12Z", - "updated_at": "2024-04-17T21:02:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718973", - "id": 162718973, - "node_id": "RA_kwDOCa0F0M4JsuT9", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 61271846, - "download_count": 7804, - "created_at": "2024-04-17T21:02:12Z", - "updated_at": "2024-04-17T21:03:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718978", - "id": 162718978, - "node_id": "RA_kwDOCa0F0M4JsuUC", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 719, - "created_at": "2024-04-17T21:02:13Z", - "updated_at": "2024-04-17T21:02:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162718979", - "id": 162718979, - "node_id": "RA_kwDOCa0F0M4JsuUD", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 89643704, - "download_count": 388, - "created_at": "2024-04-17T21:02:14Z", - "updated_at": "2024-04-17T21:03:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719005", - "id": 162719005, - "node_id": "RA_kwDOCa0F0M4JsuUd", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:02:18Z", - "updated_at": "2024-04-17T21:02:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719007", - "id": 162719007, - "node_id": "RA_kwDOCa0F0M4JsuUf", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 49383066, - "download_count": 25, - "created_at": "2024-04-17T21:02:18Z", - "updated_at": "2024-04-17T21:03:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719022", - "id": 162719022, - "node_id": "RA_kwDOCa0F0M4JsuUu", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:21Z", - "updated_at": "2024-04-17T21:02:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719028", - "id": 162719028, - "node_id": "RA_kwDOCa0F0M4JsuU0", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35247082, - "download_count": 20, - "created_at": "2024-04-17T21:02:21Z", - "updated_at": "2024-04-17T21:02:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719041", - "id": 162719041, - "node_id": "RA_kwDOCa0F0M4JsuVB", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:26Z", - "updated_at": "2024-04-17T21:02:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719042", - "id": 162719042, - "node_id": "RA_kwDOCa0F0M4JsuVC", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50977770, - "download_count": 49, - "created_at": "2024-04-17T21:02:26Z", - "updated_at": "2024-04-17T21:03:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719057", - "id": 162719057, - "node_id": "RA_kwDOCa0F0M4JsuVR", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:32Z", - "updated_at": "2024-04-17T21:02:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719059", - "id": 162719059, - "node_id": "RA_kwDOCa0F0M4JsuVT", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 78341128, - "download_count": 74, - "created_at": "2024-04-17T21:02:32Z", - "updated_at": "2024-04-17T21:03:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719086", - "id": 162719086, - "node_id": "RA_kwDOCa0F0M4JsuVu", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:36Z", - "updated_at": "2024-04-17T21:02:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719081", - "id": 162719081, - "node_id": "RA_kwDOCa0F0M4JsuVp", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33657389, - "download_count": 20, - "created_at": "2024-04-17T21:02:35Z", - "updated_at": "2024-04-17T21:03:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719090", - "id": 162719090, - "node_id": "RA_kwDOCa0F0M4JsuVy", - "name": "cpython-3.12.3+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:36Z", - "updated_at": "2024-04-17T21:02:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719096", - "id": 162719096, - "node_id": "RA_kwDOCa0F0M4JsuV4", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44202360, - "download_count": 20, - "created_at": "2024-04-17T21:02:37Z", - "updated_at": "2024-04-17T21:03:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719108", - "id": 162719108, - "node_id": "RA_kwDOCa0F0M4JsuWE", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:38Z", - "updated_at": "2024-04-17T21:02:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719113", - "id": 162719113, - "node_id": "RA_kwDOCa0F0M4JsuWJ", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 57277183, - "download_count": 335, - "created_at": "2024-04-17T21:02:38Z", - "updated_at": "2024-04-17T21:03:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719133", - "id": 162719133, - "node_id": "RA_kwDOCa0F0M4JsuWd", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:02:47Z", - "updated_at": "2024-04-17T21:02:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719135", - "id": 162719135, - "node_id": "RA_kwDOCa0F0M4JsuWf", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 78655949, - "download_count": 77, - "created_at": "2024-04-17T21:02:48Z", - "updated_at": "2024-04-17T21:03:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719138", - "id": 162719138, - "node_id": "RA_kwDOCa0F0M4JsuWi", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:49Z", - "updated_at": "2024-04-17T21:02:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719140", - "id": 162719140, - "node_id": "RA_kwDOCa0F0M4JsuWk", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37881145, - "download_count": 20, - "created_at": "2024-04-17T21:02:50Z", - "updated_at": "2024-04-17T21:03:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719166", - "id": 162719166, - "node_id": "RA_kwDOCa0F0M4JsuW-", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:02:58Z", - "updated_at": "2024-04-17T21:02:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719169", - "id": 162719169, - "node_id": "RA_kwDOCa0F0M4JsuXB", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35215002, - "download_count": 19, - "created_at": "2024-04-17T21:02:58Z", - "updated_at": "2024-04-17T21:03:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719184", - "id": 162719184, - "node_id": "RA_kwDOCa0F0M4JsuXQ", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:02Z", - "updated_at": "2024-04-17T21:03:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719186", - "id": 162719186, - "node_id": "RA_kwDOCa0F0M4JsuXS", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50981517, - "download_count": 23, - "created_at": "2024-04-17T21:03:02Z", - "updated_at": "2024-04-17T21:03:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719197", - "id": 162719197, - "node_id": "RA_kwDOCa0F0M4JsuXd", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:07Z", - "updated_at": "2024-04-17T21:03:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719200", - "id": 162719200, - "node_id": "RA_kwDOCa0F0M4JsuXg", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 78356544, - "download_count": 73, - "created_at": "2024-04-17T21:03:07Z", - "updated_at": "2024-04-17T21:04:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719206", - "id": 162719206, - "node_id": "RA_kwDOCa0F0M4JsuXm", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:09Z", - "updated_at": "2024-04-17T21:03:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719208", - "id": 162719208, - "node_id": "RA_kwDOCa0F0M4JsuXo", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33619101, - "download_count": 21, - "created_at": "2024-04-17T21:03:09Z", - "updated_at": "2024-04-17T21:03:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719215", - "id": 162719215, - "node_id": "RA_kwDOCa0F0M4JsuXv", - "name": "cpython-3.12.3+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:15Z", - "updated_at": "2024-04-17T21:03:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719216", - "id": 162719216, - "node_id": "RA_kwDOCa0F0M4JsuXw", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22119907, - "download_count": 20, - "created_at": "2024-04-17T21:03:16Z", - "updated_at": "2024-04-17T21:03:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719220", - "id": 162719220, - "node_id": "RA_kwDOCa0F0M4JsuX0", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:17Z", - "updated_at": "2024-04-17T21:03:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719223", - "id": 162719223, - "node_id": "RA_kwDOCa0F0M4JsuX3", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17651989, - "download_count": 1264, - "created_at": "2024-04-17T21:03:17Z", - "updated_at": "2024-04-17T21:03:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719235", - "id": 162719235, - "node_id": "RA_kwDOCa0F0M4JsuYD", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T21:03:20Z", - "updated_at": "2024-04-17T21:03:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719238", - "id": 162719238, - "node_id": "RA_kwDOCa0F0M4JsuYG", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32063100, - "download_count": 472, - "created_at": "2024-04-17T21:03:20Z", - "updated_at": "2024-04-17T21:03:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719244", - "id": 162719244, - "node_id": "RA_kwDOCa0F0M4JsuYM", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:03:23Z", - "updated_at": "2024-04-17T21:03:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719245", - "id": 162719245, - "node_id": "RA_kwDOCa0F0M4JsuYN", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24123914, - "download_count": 27, - "created_at": "2024-04-17T21:03:23Z", - "updated_at": "2024-04-17T21:03:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719246", - "id": 162719246, - "node_id": "RA_kwDOCa0F0M4JsuYO", - "name": "cpython-3.8.19+20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:23Z", - "updated_at": "2024-04-17T21:03:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719247", - "id": 162719247, - "node_id": "RA_kwDOCa0F0M4JsuYP", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31090597, - "download_count": 22, - "created_at": "2024-04-17T21:03:23Z", - "updated_at": "2024-04-17T21:03:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719248", - "id": 162719248, - "node_id": "RA_kwDOCa0F0M4JsuYQ", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:03:24Z", - "updated_at": "2024-04-17T21:03:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719250", - "id": 162719250, - "node_id": "RA_kwDOCa0F0M4JsuYS", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24743030, - "download_count": 2593, - "created_at": "2024-04-17T21:03:24Z", - "updated_at": "2024-04-17T21:03:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719256", - "id": 162719256, - "node_id": "RA_kwDOCa0F0M4JsuYY", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T21:03:25Z", - "updated_at": "2024-04-17T21:03:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719257", - "id": 162719257, - "node_id": "RA_kwDOCa0F0M4JsuYZ", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 98170042, - "download_count": 199, - "created_at": "2024-04-17T21:03:25Z", - "updated_at": "2024-04-17T21:05:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719258", - "id": 162719258, - "node_id": "RA_kwDOCa0F0M4JsuYa", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:26Z", - "updated_at": "2024-04-17T21:03:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719259", - "id": 162719259, - "node_id": "RA_kwDOCa0F0M4JsuYb", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32266495, - "download_count": 19, - "created_at": "2024-04-17T21:03:26Z", - "updated_at": "2024-04-17T21:03:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719284", - "id": 162719284, - "node_id": "RA_kwDOCa0F0M4JsuY0", - "name": "cpython-3.8.19+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:34Z", - "updated_at": "2024-04-17T21:03:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719285", - "id": 162719285, - "node_id": "RA_kwDOCa0F0M4JsuY1", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35953050, - "download_count": 20, - "created_at": "2024-04-17T21:03:34Z", - "updated_at": "2024-04-17T21:04:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719288", - "id": 162719288, - "node_id": "RA_kwDOCa0F0M4JsuY4", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:38Z", - "updated_at": "2024-04-17T21:03:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719291", - "id": 162719291, - "node_id": "RA_kwDOCa0F0M4JsuY7", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33434611, - "download_count": 73, - "created_at": "2024-04-17T21:03:39Z", - "updated_at": "2024-04-17T21:04:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719298", - "id": 162719298, - "node_id": "RA_kwDOCa0F0M4JsuZC", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:42Z", - "updated_at": "2024-04-17T21:03:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719300", - "id": 162719300, - "node_id": "RA_kwDOCa0F0M4JsuZE", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35953050, - "download_count": 21, - "created_at": "2024-04-17T21:03:42Z", - "updated_at": "2024-04-17T21:04:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719301", - "id": 162719301, - "node_id": "RA_kwDOCa0F0M4JsuZF", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:43Z", - "updated_at": "2024-04-17T21:03:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719304", - "id": 162719304, - "node_id": "RA_kwDOCa0F0M4JsuZI", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33434611, - "download_count": 71, - "created_at": "2024-04-17T21:03:43Z", - "updated_at": "2024-04-17T21:04:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719307", - "id": 162719307, - "node_id": "RA_kwDOCa0F0M4JsuZL", - "name": "cpython-3.8.19+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:03:45Z", - "updated_at": "2024-04-17T21:03:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719309", - "id": 162719309, - "node_id": "RA_kwDOCa0F0M4JsuZN", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22088923, - "download_count": 19, - "created_at": "2024-04-17T21:03:45Z", - "updated_at": "2024-04-17T21:04:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719314", - "id": 162719314, - "node_id": "RA_kwDOCa0F0M4JsuZS", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:03:46Z", - "updated_at": "2024-04-17T21:03:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719315", - "id": 162719315, - "node_id": "RA_kwDOCa0F0M4JsuZT", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17969684, - "download_count": 599, - "created_at": "2024-04-17T21:03:47Z", - "updated_at": "2024-04-17T21:03:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719318", - "id": 162719318, - "node_id": "RA_kwDOCa0F0M4JsuZW", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 24, - "created_at": "2024-04-17T21:03:48Z", - "updated_at": "2024-04-17T21:03:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719320", - "id": 162719320, - "node_id": "RA_kwDOCa0F0M4JsuZY", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31873527, - "download_count": 178, - "created_at": "2024-04-17T21:03:48Z", - "updated_at": "2024-04-17T21:04:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719324", - "id": 162719324, - "node_id": "RA_kwDOCa0F0M4JsuZc", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:03:49Z", - "updated_at": "2024-04-17T21:03:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719325", - "id": 162719325, - "node_id": "RA_kwDOCa0F0M4JsuZd", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23665040, - "download_count": 19, - "created_at": "2024-04-17T21:03:50Z", - "updated_at": "2024-04-17T21:04:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719329", - "id": 162719329, - "node_id": "RA_kwDOCa0F0M4JsuZh", - "name": "cpython-3.8.19+20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:03:51Z", - "updated_at": "2024-04-17T21:03:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719332", - "id": 162719332, - "node_id": "RA_kwDOCa0F0M4JsuZk", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36923970, - "download_count": 1395, - "created_at": "2024-04-17T21:03:51Z", - "updated_at": "2024-04-17T21:04:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719335", - "id": 162719335, - "node_id": "RA_kwDOCa0F0M4JsuZn", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:03:54Z", - "updated_at": "2024-04-17T21:03:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719343", - "id": 162719343, - "node_id": "RA_kwDOCa0F0M4JsuZv", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34143528, - "download_count": 81, - "created_at": "2024-04-17T21:03:54Z", - "updated_at": "2024-04-17T21:04:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719348", - "id": 162719348, - "node_id": "RA_kwDOCa0F0M4JsuZ0", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T21:03:54Z", - "updated_at": "2024-04-17T21:03:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719374", - "id": 162719374, - "node_id": "RA_kwDOCa0F0M4JsuaO", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36923970, - "download_count": 709, - "created_at": "2024-04-17T21:03:55Z", - "updated_at": "2024-04-17T21:04:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719373", - "id": 162719373, - "node_id": "RA_kwDOCa0F0M4JsuaN", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 24, - "created_at": "2024-04-17T21:03:55Z", - "updated_at": "2024-04-17T21:03:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719375", - "id": 162719375, - "node_id": "RA_kwDOCa0F0M4JsuaP", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34143528, - "download_count": 414, - "created_at": "2024-04-17T21:03:55Z", - "updated_at": "2024-04-17T21:04:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719413", - "id": 162719413, - "node_id": "RA_kwDOCa0F0M4Jsua1", - "name": "cpython-3.8.19+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2024-04-17T21:03:57Z", - "updated_at": "2024-04-17T21:03:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719437", - "id": 162719437, - "node_id": "RA_kwDOCa0F0M4JsubN", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25957328, - "download_count": 23, - "created_at": "2024-04-17T21:03:57Z", - "updated_at": "2024-04-17T21:04:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719453", - "id": 162719453, - "node_id": "RA_kwDOCa0F0M4Jsubd", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:03:58Z", - "updated_at": "2024-04-17T21:03:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719455", - "id": 162719455, - "node_id": "RA_kwDOCa0F0M4Jsubf", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26604389, - "download_count": 15818, - "created_at": "2024-04-17T21:03:58Z", - "updated_at": "2024-04-17T21:04:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719458", - "id": 162719458, - "node_id": "RA_kwDOCa0F0M4Jsubi", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T21:03:59Z", - "updated_at": "2024-04-17T21:03:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719512", - "id": 162719512, - "node_id": "RA_kwDOCa0F0M4JsucY", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40211858, - "download_count": 3430, - "created_at": "2024-04-17T21:03:59Z", - "updated_at": "2024-04-17T21:04:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719524", - "id": 162719524, - "node_id": "RA_kwDOCa0F0M4Jsuck", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T21:04:05Z", - "updated_at": "2024-04-17T21:04:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719526", - "id": 162719526, - "node_id": "RA_kwDOCa0F0M4Jsucm", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31189020, - "download_count": 26, - "created_at": "2024-04-17T21:04:05Z", - "updated_at": "2024-04-17T21:04:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719537", - "id": 162719537, - "node_id": "RA_kwDOCa0F0M4Jsucx", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T21:04:11Z", - "updated_at": "2024-04-17T21:04:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719538", - "id": 162719538, - "node_id": "RA_kwDOCa0F0M4Jsucy", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24968220, - "download_count": 21, - "created_at": "2024-04-17T21:04:12Z", - "updated_at": "2024-04-17T21:04:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719539", - "id": 162719539, - "node_id": "RA_kwDOCa0F0M4Jsucz", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:12Z", - "updated_at": "2024-04-17T21:04:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719542", - "id": 162719542, - "node_id": "RA_kwDOCa0F0M4Jsuc2", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24863907, - "download_count": 24, - "created_at": "2024-04-17T21:04:12Z", - "updated_at": "2024-04-17T21:04:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719543", - "id": 162719543, - "node_id": "RA_kwDOCa0F0M4Jsuc3", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:12Z", - "updated_at": "2024-04-17T21:04:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719544", - "id": 162719544, - "node_id": "RA_kwDOCa0F0M4Jsuc4", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37389072, - "download_count": 72, - "created_at": "2024-04-17T21:04:13Z", - "updated_at": "2024-04-17T21:04:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719545", - "id": 162719545, - "node_id": "RA_kwDOCa0F0M4Jsuc5", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:04:13Z", - "updated_at": "2024-04-17T21:04:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719546", - "id": 162719546, - "node_id": "RA_kwDOCa0F0M4Jsuc6", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26900304, - "download_count": 20, - "created_at": "2024-04-17T21:04:13Z", - "updated_at": "2024-04-17T21:04:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719561", - "id": 162719561, - "node_id": "RA_kwDOCa0F0M4JsudJ", - "name": "cpython-3.8.19+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:19Z", - "updated_at": "2024-04-17T21:04:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719562", - "id": 162719562, - "node_id": "RA_kwDOCa0F0M4JsudK", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22364182, - "download_count": 19, - "created_at": "2024-04-17T21:04:19Z", - "updated_at": "2024-04-17T21:04:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719563", - "id": 162719563, - "node_id": "RA_kwDOCa0F0M4JsudL", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:20Z", - "updated_at": "2024-04-17T21:04:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719565", - "id": 162719565, - "node_id": "RA_kwDOCa0F0M4JsudN", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 16797917, - "download_count": 1973, - "created_at": "2024-04-17T21:04:20Z", - "updated_at": "2024-04-17T21:04:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719566", - "id": 162719566, - "node_id": "RA_kwDOCa0F0M4JsudO", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 28, - "created_at": "2024-04-17T21:04:20Z", - "updated_at": "2024-04-17T21:04:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719568", - "id": 162719568, - "node_id": "RA_kwDOCa0F0M4JsudQ", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32799692, - "download_count": 629, - "created_at": "2024-04-17T21:04:21Z", - "updated_at": "2024-04-17T21:04:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719571", - "id": 162719571, - "node_id": "RA_kwDOCa0F0M4JsudT", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:04:21Z", - "updated_at": "2024-04-17T21:04:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719572", - "id": 162719572, - "node_id": "RA_kwDOCa0F0M4JsudU", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24310923, - "download_count": 19, - "created_at": "2024-04-17T21:04:21Z", - "updated_at": "2024-04-17T21:04:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719573", - "id": 162719573, - "node_id": "RA_kwDOCa0F0M4JsudV", - "name": "cpython-3.9.19+20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:22Z", - "updated_at": "2024-04-17T21:04:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719574", - "id": 162719574, - "node_id": "RA_kwDOCa0F0M4JsudW", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32372603, - "download_count": 19, - "created_at": "2024-04-17T21:04:22Z", - "updated_at": "2024-04-17T21:04:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719595", - "id": 162719595, - "node_id": "RA_kwDOCa0F0M4Jsudr", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:04:26Z", - "updated_at": "2024-04-17T21:04:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719598", - "id": 162719598, - "node_id": "RA_kwDOCa0F0M4Jsudu", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24184609, - "download_count": 448, - "created_at": "2024-04-17T21:04:26Z", - "updated_at": "2024-04-17T21:04:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719602", - "id": 162719602, - "node_id": "RA_kwDOCa0F0M4Jsudy", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T21:04:29Z", - "updated_at": "2024-04-17T21:04:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719606", - "id": 162719606, - "node_id": "RA_kwDOCa0F0M4Jsud2", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 103164479, - "download_count": 95, - "created_at": "2024-04-17T21:04:29Z", - "updated_at": "2024-04-17T21:06:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719609", - "id": 162719609, - "node_id": "RA_kwDOCa0F0M4Jsud5", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:29Z", - "updated_at": "2024-04-17T21:04:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719612", - "id": 162719612, - "node_id": "RA_kwDOCa0F0M4Jsud8", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32560493, - "download_count": 20, - "created_at": "2024-04-17T21:04:30Z", - "updated_at": "2024-04-17T21:05:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719615", - "id": 162719615, - "node_id": "RA_kwDOCa0F0M4Jsud_", - "name": "cpython-3.9.19+20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:30Z", - "updated_at": "2024-04-17T21:04:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719618", - "id": 162719618, - "node_id": "RA_kwDOCa0F0M4JsueC", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29673448, - "download_count": 19, - "created_at": "2024-04-17T21:04:31Z", - "updated_at": "2024-04-17T21:05:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719619", - "id": 162719619, - "node_id": "RA_kwDOCa0F0M4JsueD", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:31Z", - "updated_at": "2024-04-17T21:04:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719621", - "id": 162719621, - "node_id": "RA_kwDOCa0F0M4JsueF", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23993588, - "download_count": 17, - "created_at": "2024-04-17T21:04:31Z", - "updated_at": "2024-04-17T21:04:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719627", - "id": 162719627, - "node_id": "RA_kwDOCa0F0M4JsueL", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:33Z", - "updated_at": "2024-04-17T21:04:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719628", - "id": 162719628, - "node_id": "RA_kwDOCa0F0M4JsueM", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 101036394, - "download_count": 71, - "created_at": "2024-04-17T21:04:34Z", - "updated_at": "2024-04-17T21:06:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719646", - "id": 162719646, - "node_id": "RA_kwDOCa0F0M4Jsuee", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T21:04:38Z", - "updated_at": "2024-04-17T21:04:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719647", - "id": 162719647, - "node_id": "RA_kwDOCa0F0M4Jsuef", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29802136, - "download_count": 19, - "created_at": "2024-04-17T21:04:38Z", - "updated_at": "2024-04-17T21:05:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719648", - "id": 162719648, - "node_id": "RA_kwDOCa0F0M4Jsueg", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:38Z", - "updated_at": "2024-04-17T21:04:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabi-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719649", - "id": 162719649, - "node_id": "RA_kwDOCa0F0M4Jsueh", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29543178, - "download_count": 19, - "created_at": "2024-04-17T21:04:38Z", - "updated_at": "2024-04-17T21:05:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719650", - "id": 162719650, - "node_id": "RA_kwDOCa0F0M4Jsuei", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:38Z", - "updated_at": "2024-04-17T21:04:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719652", - "id": 162719652, - "node_id": "RA_kwDOCa0F0M4Jsuek", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23435859, - "download_count": 17, - "created_at": "2024-04-17T21:04:39Z", - "updated_at": "2024-04-17T21:05:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719654", - "id": 162719654, - "node_id": "RA_kwDOCa0F0M4Jsuem", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:39Z", - "updated_at": "2024-04-17T21:04:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719656", - "id": 162719656, - "node_id": "RA_kwDOCa0F0M4Jsueo", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 100877743, - "download_count": 72, - "created_at": "2024-04-17T21:04:40Z", - "updated_at": "2024-04-17T21:06:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719662", - "id": 162719662, - "node_id": "RA_kwDOCa0F0M4Jsueu", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T21:04:41Z", - "updated_at": "2024-04-17T21:04:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719665", - "id": 162719665, - "node_id": "RA_kwDOCa0F0M4Jsuex", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29730527, - "download_count": 19, - "created_at": "2024-04-17T21:04:41Z", - "updated_at": "2024-04-17T21:05:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719669", - "id": 162719669, - "node_id": "RA_kwDOCa0F0M4Jsue1", - "name": "cpython-3.9.19+20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:43Z", - "updated_at": "2024-04-17T21:04:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-armv7-unknown-linux-gnueabihf-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719671", - "id": 162719671, - "node_id": "RA_kwDOCa0F0M4Jsue3", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37096204, - "download_count": 24, - "created_at": "2024-04-17T21:04:44Z", - "updated_at": "2024-04-17T21:05:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719687", - "id": 162719687, - "node_id": "RA_kwDOCa0F0M4JsufH", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2024-04-17T21:04:51Z", - "updated_at": "2024-04-17T21:04:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719688", - "id": 162719688, - "node_id": "RA_kwDOCa0F0M4JsufI", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34695251, - "download_count": 71, - "created_at": "2024-04-17T21:04:51Z", - "updated_at": "2024-04-17T21:05:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719689", - "id": 162719689, - "node_id": "RA_kwDOCa0F0M4JsufJ", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:52Z", - "updated_at": "2024-04-17T21:04:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719692", - "id": 162719692, - "node_id": "RA_kwDOCa0F0M4JsufM", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37096204, - "download_count": 15, - "created_at": "2024-04-17T21:04:52Z", - "updated_at": "2024-04-17T21:05:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719696", - "id": 162719696, - "node_id": "RA_kwDOCa0F0M4JsufQ", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:04:54Z", - "updated_at": "2024-04-17T21:04:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719699", - "id": 162719699, - "node_id": "RA_kwDOCa0F0M4JsufT", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34695251, - "download_count": 71, - "created_at": "2024-04-17T21:04:54Z", - "updated_at": "2024-04-17T21:05:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719707", - "id": 162719707, - "node_id": "RA_kwDOCa0F0M4Jsufb", - "name": "cpython-3.9.19+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:04:58Z", - "updated_at": "2024-04-17T21:04:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719705", - "id": 162719705, - "node_id": "RA_kwDOCa0F0M4JsufZ", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33636842, - "download_count": 19, - "created_at": "2024-04-17T21:04:58Z", - "updated_at": "2024-04-17T21:05:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719708", - "id": 162719708, - "node_id": "RA_kwDOCa0F0M4Jsufc", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:04:58Z", - "updated_at": "2024-04-17T21:04:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719710", - "id": 162719710, - "node_id": "RA_kwDOCa0F0M4Jsufe", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25010936, - "download_count": 369, - "created_at": "2024-04-17T21:04:59Z", - "updated_at": "2024-04-17T21:05:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719715", - "id": 162719715, - "node_id": "RA_kwDOCa0F0M4Jsufj", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T21:05:01Z", - "updated_at": "2024-04-17T21:05:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719717", - "id": 162719717, - "node_id": "RA_kwDOCa0F0M4Jsufl", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 118522074, - "download_count": 70, - "created_at": "2024-04-17T21:05:01Z", - "updated_at": "2024-04-17T21:07:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719731", - "id": 162719731, - "node_id": "RA_kwDOCa0F0M4Jsufz", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:05Z", - "updated_at": "2024-04-17T21:05:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719742", - "id": 162719742, - "node_id": "RA_kwDOCa0F0M4Jsuf-", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33820294, - "download_count": 19, - "created_at": "2024-04-17T21:05:06Z", - "updated_at": "2024-04-17T21:05:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719769", - "id": 162719769, - "node_id": "RA_kwDOCa0F0M4JsugZ", - "name": "cpython-3.9.19+20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:07Z", - "updated_at": "2024-04-17T21:05:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719777", - "id": 162719777, - "node_id": "RA_kwDOCa0F0M4Jsugh", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34599184, - "download_count": 19, - "created_at": "2024-04-17T21:05:07Z", - "updated_at": "2024-04-17T21:05:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719808", - "id": 162719808, - "node_id": "RA_kwDOCa0F0M4JsuhA", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:05:10Z", - "updated_at": "2024-04-17T21:05:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719814", - "id": 162719814, - "node_id": "RA_kwDOCa0F0M4JsuhG", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25584393, - "download_count": 367, - "created_at": "2024-04-17T21:05:10Z", - "updated_at": "2024-04-17T21:05:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719818", - "id": 162719818, - "node_id": "RA_kwDOCa0F0M4JsuhK", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T21:05:10Z", - "updated_at": "2024-04-17T21:05:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719824", - "id": 162719824, - "node_id": "RA_kwDOCa0F0M4JsuhQ", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 121127221, - "download_count": 69, - "created_at": "2024-04-17T21:05:11Z", - "updated_at": "2024-04-17T21:07:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719830", - "id": 162719830, - "node_id": "RA_kwDOCa0F0M4JsuhW", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:11Z", - "updated_at": "2024-04-17T21:05:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719831", - "id": 162719831, - "node_id": "RA_kwDOCa0F0M4JsuhX", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35202293, - "download_count": 19, - "created_at": "2024-04-17T21:05:11Z", - "updated_at": "2024-04-17T21:05:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719834", - "id": 162719834, - "node_id": "RA_kwDOCa0F0M4Jsuha", - "name": "cpython-3.9.19+20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:12Z", - "updated_at": "2024-04-17T21:05:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719838", - "id": 162719838, - "node_id": "RA_kwDOCa0F0M4Jsuhe", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22340155, - "download_count": 19, - "created_at": "2024-04-17T21:05:12Z", - "updated_at": "2024-04-17T21:05:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719867", - "id": 162719867, - "node_id": "RA_kwDOCa0F0M4Jsuh7", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:19Z", - "updated_at": "2024-04-17T21:05:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719869", - "id": 162719869, - "node_id": "RA_kwDOCa0F0M4Jsuh9", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17131003, - "download_count": 1613, - "created_at": "2024-04-17T21:05:19Z", - "updated_at": "2024-04-17T21:05:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719879", - "id": 162719879, - "node_id": "RA_kwDOCa0F0M4JsuiH", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2024-04-17T21:05:24Z", - "updated_at": "2024-04-17T21:05:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719880", - "id": 162719880, - "node_id": "RA_kwDOCa0F0M4JsuiI", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32602897, - "download_count": 341, - "created_at": "2024-04-17T21:05:25Z", - "updated_at": "2024-04-17T21:06:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719881", - "id": 162719881, - "node_id": "RA_kwDOCa0F0M4JsuiJ", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:05:26Z", - "updated_at": "2024-04-17T21:05:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719883", - "id": 162719883, - "node_id": "RA_kwDOCa0F0M4JsuiL", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23837994, - "download_count": 19, - "created_at": "2024-04-17T21:05:26Z", - "updated_at": "2024-04-17T21:05:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719887", - "id": 162719887, - "node_id": "RA_kwDOCa0F0M4JsuiP", - "name": "cpython-3.9.19+20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:29Z", - "updated_at": "2024-04-17T21:05:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719888", - "id": 162719888, - "node_id": "RA_kwDOCa0F0M4JsuiQ", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38079587, - "download_count": 1921, - "created_at": "2024-04-17T21:05:30Z", - "updated_at": "2024-04-17T21:06:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719892", - "id": 162719892, - "node_id": "RA_kwDOCa0F0M4JsuiU", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:05:32Z", - "updated_at": "2024-04-17T21:05:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719893", - "id": 162719893, - "node_id": "RA_kwDOCa0F0M4JsuiV", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35428044, - "download_count": 79, - "created_at": "2024-04-17T21:05:32Z", - "updated_at": "2024-04-17T21:06:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719894", - "id": 162719894, - "node_id": "RA_kwDOCa0F0M4JsuiW", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2024-04-17T21:05:33Z", - "updated_at": "2024-04-17T21:05:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719897", - "id": 162719897, - "node_id": "RA_kwDOCa0F0M4JsuiZ", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38079587, - "download_count": 2958, - "created_at": "2024-04-17T21:05:33Z", - "updated_at": "2024-04-17T21:06:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719898", - "id": 162719898, - "node_id": "RA_kwDOCa0F0M4Jsuia", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2024-04-17T21:05:33Z", - "updated_at": "2024-04-17T21:05:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719899", - "id": 162719899, - "node_id": "RA_kwDOCa0F0M4Jsuib", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35428044, - "download_count": 475, - "created_at": "2024-04-17T21:05:34Z", - "updated_at": "2024-04-17T21:06:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719900", - "id": 162719900, - "node_id": "RA_kwDOCa0F0M4Jsuic", - "name": "cpython-3.9.19+20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T21:05:34Z", - "updated_at": "2024-04-17T21:05:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719903", - "id": 162719903, - "node_id": "RA_kwDOCa0F0M4Jsuif", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26202215, - "download_count": 21, - "created_at": "2024-04-17T21:05:35Z", - "updated_at": "2024-04-17T21:06:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719902", - "id": 162719902, - "node_id": "RA_kwDOCa0F0M4Jsuie", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:05:34Z", - "updated_at": "2024-04-17T21:05:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719905", - "id": 162719905, - "node_id": "RA_kwDOCa0F0M4Jsuih", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26341892, - "download_count": 93480, - "created_at": "2024-04-17T21:05:35Z", - "updated_at": "2024-04-17T21:05:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719930", - "id": 162719930, - "node_id": "RA_kwDOCa0F0M4Jsui6", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 27, - "created_at": "2024-04-17T21:05:43Z", - "updated_at": "2024-04-17T21:05:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719932", - "id": 162719932, - "node_id": "RA_kwDOCa0F0M4Jsui8", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48452917, - "download_count": 7292, - "created_at": "2024-04-17T21:05:43Z", - "updated_at": "2024-04-17T21:06:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719933", - "id": 162719933, - "node_id": "RA_kwDOCa0F0M4Jsui9", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2024-04-17T21:05:43Z", - "updated_at": "2024-04-17T21:05:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162719934", - "id": 162719934, - "node_id": "RA_kwDOCa0F0M4Jsui-", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31639357, - "download_count": 43, - "created_at": "2024-04-17T21:05:44Z", - "updated_at": "2024-04-17T21:06:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720012", - "id": 162720012, - "node_id": "RA_kwDOCa0F0M4JsukM", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2024-04-17T21:05:49Z", - "updated_at": "2024-04-17T21:05:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720023", - "id": 162720023, - "node_id": "RA_kwDOCa0F0M4JsukX", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25216282, - "download_count": 19, - "created_at": "2024-04-17T21:05:50Z", - "updated_at": "2024-04-17T21:06:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720026", - "id": 162720026, - "node_id": "RA_kwDOCa0F0M4Jsuka", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:52Z", - "updated_at": "2024-04-17T21:05:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720029", - "id": 162720029, - "node_id": "RA_kwDOCa0F0M4Jsukd", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24896745, - "download_count": 22, - "created_at": "2024-04-17T21:05:52Z", - "updated_at": "2024-04-17T21:06:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720042", - "id": 162720042, - "node_id": "RA_kwDOCa0F0M4Jsukq", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:05:58Z", - "updated_at": "2024-04-17T21:05:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720044", - "id": 162720044, - "node_id": "RA_kwDOCa0F0M4Jsuks", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38900871, - "download_count": 72, - "created_at": "2024-04-17T21:05:59Z", - "updated_at": "2024-04-17T21:06:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720053", - "id": 162720053, - "node_id": "RA_kwDOCa0F0M4Jsuk1", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2024-04-17T21:06:01Z", - "updated_at": "2024-04-17T21:06:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720054", - "id": 162720054, - "node_id": "RA_kwDOCa0F0M4Jsuk2", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27288049, - "download_count": 21, - "created_at": "2024-04-17T21:06:02Z", - "updated_at": "2024-04-17T21:06:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720056", - "id": 162720056, - "node_id": "RA_kwDOCa0F0M4Jsuk4", - "name": "cpython-3.9.19+20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:02Z", - "updated_at": "2024-04-17T21:06:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720057", - "id": 162720057, - "node_id": "RA_kwDOCa0F0M4Jsuk5", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26152935, - "download_count": 19, - "created_at": "2024-04-17T21:06:02Z", - "updated_at": "2024-04-17T21:06:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720076", - "id": 162720076, - "node_id": "RA_kwDOCa0F0M4JsulM", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:08Z", - "updated_at": "2024-04-17T21:06:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720081", - "id": 162720081, - "node_id": "RA_kwDOCa0F0M4JsulR", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26201824, - "download_count": 34, - "created_at": "2024-04-17T21:06:08Z", - "updated_at": "2024-04-17T21:06:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720079", - "id": 162720079, - "node_id": "RA_kwDOCa0F0M4JsulP", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:08Z", - "updated_at": "2024-04-17T21:06:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720093", - "id": 162720093, - "node_id": "RA_kwDOCa0F0M4Jsuld", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48391905, - "download_count": 72, - "created_at": "2024-04-17T21:06:09Z", - "updated_at": "2024-04-17T21:06:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720132", - "id": 162720132, - "node_id": "RA_kwDOCa0F0M4JsumE", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:12Z", - "updated_at": "2024-04-17T21:06:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720134", - "id": 162720134, - "node_id": "RA_kwDOCa0F0M4JsumG", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31654627, - "download_count": 22, - "created_at": "2024-04-17T21:06:12Z", - "updated_at": "2024-04-17T21:06:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720141", - "id": 162720141, - "node_id": "RA_kwDOCa0F0M4JsumN", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:12Z", - "updated_at": "2024-04-17T21:06:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720143", - "id": 162720143, - "node_id": "RA_kwDOCa0F0M4JsumP", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25217896, - "download_count": 19, - "created_at": "2024-04-17T21:06:13Z", - "updated_at": "2024-04-17T21:06:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720147", - "id": 162720147, - "node_id": "RA_kwDOCa0F0M4JsumT", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:14Z", - "updated_at": "2024-04-17T21:06:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720149", - "id": 162720149, - "node_id": "RA_kwDOCa0F0M4JsumV", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24862494, - "download_count": 18, - "created_at": "2024-04-17T21:06:14Z", - "updated_at": "2024-04-17T21:06:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720152", - "id": 162720152, - "node_id": "RA_kwDOCa0F0M4JsumY", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:15Z", - "updated_at": "2024-04-17T21:06:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720151", - "id": 162720151, - "node_id": "RA_kwDOCa0F0M4JsumX", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38854666, - "download_count": 71, - "created_at": "2024-04-17T21:06:15Z", - "updated_at": "2024-04-17T21:06:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720154", - "id": 162720154, - "node_id": "RA_kwDOCa0F0M4Jsuma", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:16Z", - "updated_at": "2024-04-17T21:06:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720156", - "id": 162720156, - "node_id": "RA_kwDOCa0F0M4Jsumc", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27268484, - "download_count": 20, - "created_at": "2024-04-17T21:06:16Z", - "updated_at": "2024-04-17T21:06:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720158", - "id": 162720158, - "node_id": "RA_kwDOCa0F0M4Jsume", - "name": "cpython-3.9.19+20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:17Z", - "updated_at": "2024-04-17T21:06:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720162", - "id": 162720162, - "node_id": "RA_kwDOCa0F0M4Jsumi", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26187018, - "download_count": 19, - "created_at": "2024-04-17T21:06:18Z", - "updated_at": "2024-04-17T21:06:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720176", - "id": 162720176, - "node_id": "RA_kwDOCa0F0M4Jsumw", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:20Z", - "updated_at": "2024-04-17T21:06:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720179", - "id": 162720179, - "node_id": "RA_kwDOCa0F0M4Jsumz", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26230149, - "download_count": 3235, - "created_at": "2024-04-17T21:06:20Z", - "updated_at": "2024-04-17T21:06:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720185", - "id": 162720185, - "node_id": "RA_kwDOCa0F0M4Jsum5", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2024-04-17T21:06:25Z", - "updated_at": "2024-04-17T21:06:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720186", - "id": 162720186, - "node_id": "RA_kwDOCa0F0M4Jsum6", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48452652, - "download_count": 79, - "created_at": "2024-04-17T21:06:25Z", - "updated_at": "2024-04-17T21:07:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720205", - "id": 162720205, - "node_id": "RA_kwDOCa0F0M4JsunN", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2024-04-17T21:06:28Z", - "updated_at": "2024-04-17T21:06:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720207", - "id": 162720207, - "node_id": "RA_kwDOCa0F0M4JsunP", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31695835, - "download_count": 21, - "created_at": "2024-04-17T21:06:28Z", - "updated_at": "2024-04-17T21:06:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720243", - "id": 162720243, - "node_id": "RA_kwDOCa0F0M4Jsunz", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:31Z", - "updated_at": "2024-04-17T21:06:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720246", - "id": 162720246, - "node_id": "RA_kwDOCa0F0M4Jsun2", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25259158, - "download_count": 19, - "created_at": "2024-04-17T21:06:31Z", - "updated_at": "2024-04-17T21:06:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720251", - "id": 162720251, - "node_id": "RA_kwDOCa0F0M4Jsun7", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:34Z", - "updated_at": "2024-04-17T21:06:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720252", - "id": 162720252, - "node_id": "RA_kwDOCa0F0M4Jsun8", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24966245, - "download_count": 20, - "created_at": "2024-04-17T21:06:34Z", - "updated_at": "2024-04-17T21:07:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720258", - "id": 162720258, - "node_id": "RA_kwDOCa0F0M4JsuoC", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:35Z", - "updated_at": "2024-04-17T21:06:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720261", - "id": 162720261, - "node_id": "RA_kwDOCa0F0M4JsuoF", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39049076, - "download_count": 71, - "created_at": "2024-04-17T21:06:35Z", - "updated_at": "2024-04-17T21:07:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720269", - "id": 162720269, - "node_id": "RA_kwDOCa0F0M4JsuoN", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:37Z", - "updated_at": "2024-04-17T21:06:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720270", - "id": 162720270, - "node_id": "RA_kwDOCa0F0M4JsuoO", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27348273, - "download_count": 20, - "created_at": "2024-04-17T21:06:37Z", - "updated_at": "2024-04-17T21:07:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720271", - "id": 162720271, - "node_id": "RA_kwDOCa0F0M4JsuoP", - "name": "cpython-3.9.19+20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:38Z", - "updated_at": "2024-04-17T21:06:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720272", - "id": 162720272, - "node_id": "RA_kwDOCa0F0M4JsuoQ", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26194677, - "download_count": 19, - "created_at": "2024-04-17T21:06:38Z", - "updated_at": "2024-04-17T21:07:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720279", - "id": 162720279, - "node_id": "RA_kwDOCa0F0M4JsuoX", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:40Z", - "updated_at": "2024-04-17T21:06:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720281", - "id": 162720281, - "node_id": "RA_kwDOCa0F0M4JsuoZ", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25802051, - "download_count": 139, - "created_at": "2024-04-17T21:06:40Z", - "updated_at": "2024-04-17T21:07:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720282", - "id": 162720282, - "node_id": "RA_kwDOCa0F0M4Jsuoa", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:40Z", - "updated_at": "2024-04-17T21:06:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720286", - "id": 162720286, - "node_id": "RA_kwDOCa0F0M4Jsuoe", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40017803, - "download_count": 71, - "created_at": "2024-04-17T21:06:41Z", - "updated_at": "2024-04-17T21:07:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720294", - "id": 162720294, - "node_id": "RA_kwDOCa0F0M4Jsuom", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:46Z", - "updated_at": "2024-04-17T21:06:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720295", - "id": 162720295, - "node_id": "RA_kwDOCa0F0M4Jsuon", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28764741, - "download_count": 19, - "created_at": "2024-04-17T21:06:46Z", - "updated_at": "2024-04-17T21:07:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720296", - "id": 162720296, - "node_id": "RA_kwDOCa0F0M4Jsuoo", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:46Z", - "updated_at": "2024-04-17T21:06:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720299", - "id": 162720299, - "node_id": "RA_kwDOCa0F0M4Jsuor", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25265731, - "download_count": 19, - "created_at": "2024-04-17T21:06:47Z", - "updated_at": "2024-04-17T21:07:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720307", - "id": 162720307, - "node_id": "RA_kwDOCa0F0M4Jsuoz", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:51Z", - "updated_at": "2024-04-17T21:06:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720308", - "id": 162720308, - "node_id": "RA_kwDOCa0F0M4Jsuo0", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24965944, - "download_count": 19, - "created_at": "2024-04-17T21:06:52Z", - "updated_at": "2024-04-17T21:07:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720309", - "id": 162720309, - "node_id": "RA_kwDOCa0F0M4Jsuo1", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:52Z", - "updated_at": "2024-04-17T21:06:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720311", - "id": 162720311, - "node_id": "RA_kwDOCa0F0M4Jsuo3", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39065792, - "download_count": 71, - "created_at": "2024-04-17T21:06:52Z", - "updated_at": "2024-04-17T21:07:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720312", - "id": 162720312, - "node_id": "RA_kwDOCa0F0M4Jsuo4", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:52Z", - "updated_at": "2024-04-17T21:06:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720313", - "id": 162720313, - "node_id": "RA_kwDOCa0F0M4Jsuo5", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27343571, - "download_count": 19, - "created_at": "2024-04-17T21:06:52Z", - "updated_at": "2024-04-17T21:07:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720318", - "id": 162720318, - "node_id": "RA_kwDOCa0F0M4Jsuo-", - "name": "cpython-3.9.19+20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2024-04-17T21:06:59Z", - "updated_at": "2024-04-17T21:06:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/162720344", - "id": 162720344, - "node_id": "RA_kwDOCa0F0M4JsupY", - "name": "SHA256SUMS", - "label": "", - "uploader": { - "login": "charliermarsh", - "id": 1309177, - "node_id": "MDQ6VXNlcjEzMDkxNzc=", - "avatar_url": "https://avatars.githubusercontent.com/u/1309177?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/charliermarsh", - "html_url": "https://github.com/charliermarsh", - "followers_url": "https://api.github.com/users/charliermarsh/followers", - "following_url": "https://api.github.com/users/charliermarsh/following{/other_user}", - "gists_url": "https://api.github.com/users/charliermarsh/gists{/gist_id}", - "starred_url": "https://api.github.com/users/charliermarsh/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/charliermarsh/subscriptions", - "organizations_url": "https://api.github.com/users/charliermarsh/orgs", - "repos_url": "https://api.github.com/users/charliermarsh/repos", - "events_url": "https://api.github.com/users/charliermarsh/events{/privacy}", - "received_events_url": "https://api.github.com/users/charliermarsh/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40573, - "download_count": 214, - "created_at": "2024-04-17T21:07:14Z", - "updated_at": "2024-04-17T21:07:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20240415/SHA256SUMS" } - ], - "tarball_url": "https://api.github.com/repos/indygreg/python-build-standalone/tarball/20240415", - "zipball_url": "https://api.github.com/repos/indygreg/python-build-standalone/zipball/20240415", - "body": "Need help choosing which build to use? See documentation at https://gregoryszorc.com/docs/python-build-standalone/20240415/running.html.\r\n\r\n## Upgrades\r\n\r\n* CPython 3.12.2 -> 3.12.3\r\n* CPython 3.11.8 -> 3.11.9\r\n* CPython 3.10.13 -> 3.10.14\r\n* CPython 3.9.18 -> 3.9.19\r\n* CPython 3.8.18 -> 3.8.19\r\n* musl libc 1.2.4 -> 1.2.5\r\n\r\n## Breaking\r\n\r\n* **The LTO-only build are no longer published** for targets which have a PGO+LTO build. Consumers of the LTO-only builds are recommended to migrate to the PTO+LTO variants (#223). Affected triples are: `aarch64-apple-darwin`, `x86_64-apple-darwin`, `x86_64-unknown-linux-gnu`, `x86_64_v2-unknown-linux-gnu`, and `x86_64_v3-unknown-linux-gnu`.\r\n* **The static Windows builds have been removed.** Consumers of the static Windows builds must switch to the dynamically-linked Windows builds. See #221 for why this was done. \r\n* The dynamically-linked Windows builds are now published without a `-shared-` tag (e.g., `cpython-3.10.14+20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst` is now available as `cpython-3.10.14+20240415-i686-pc-windows-msvc-pgo-full.tar.zst`). The `-shared-` aliases will continue to be uploaded for now, though both assets refer to the same built artifact, and consumers are recommended to migrate to the non-`shared` variant (#241).\r\n\r\n## Other\r\n\r\n* `armv7-unknown-linux-gnueabi` and `armv7-unknown-linux-gnueabihf` artifacts are now published.\r\n* The build system now supports building CPython from a local source directory (rather than requiring a source tarball distribution). (#236)\r\n\r\n**Full Changelog**: https://github.com/indygreg/python-build-standalone/compare/20240224...20240415\r\n", - "reactions": { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/151218870/reactions", - "total_count": 4, - "+1": 2, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 2 - } -} + ] +} \ No newline at end of file diff --git a/src/yen/linux_i686_release.json b/src/yen/linux_i686_release.json index 232bb98..b5efe01 100644 --- a/src/yen/linux_i686_release.json +++ b/src/yen/linux_i686_release.json @@ -1,16814 +1,1485 @@ { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599", - "assets_url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599/assets", - "upload_url": "https://uploads.github.com/repos/indygreg/python-build-standalone/releases/118809599/assets{?name,label}", - "html_url": "https://github.com/indygreg/python-build-standalone/releases/tag/20230826", "id": 118809599, - "author": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "node_id": "RE_kwDOCa0F0M4HFOP_", - "tag_name": "20230826", - "target_commitish": "main", - "name": "20230826", - "draft": false, - "prerelease": false, - "created_at": "2023-08-26T05:10:26Z", - "published_at": "2023-08-26T14:58:21Z", + "html_url": "https://github.com/indygreg/python-build-standalone/releases/tag/20230826", "assets": [ { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232985", - "id": 123232985, - "node_id": "RA_kwDOCa0F0M4HWGLZ", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22276708, - "download_count": 25, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232982", - "id": 123232982, - "node_id": "RA_kwDOCa0F0M4HWGLW", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232986", - "id": 123232986, - "node_id": "RA_kwDOCa0F0M4HWGLa", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 16830300, - "download_count": 1118, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232984", - "id": 123232984, - "node_id": "RA_kwDOCa0F0M4HWGLY", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232983", - "id": 123232983, - "node_id": "RA_kwDOCa0F0M4HWGLX", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31559795, - "download_count": 11, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232981", - "id": 123232981, - "node_id": "RA_kwDOCa0F0M4HWGLV", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:37:55Z", - "updated_at": "2023-08-26T15:37:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232989", - "id": 123232989, - "node_id": "RA_kwDOCa0F0M4HWGLd", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32981010, - "download_count": 175, - "created_at": "2023-08-26T15:37:56Z", - "updated_at": "2023-08-26T15:37:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232990", - "id": 123232990, - "node_id": "RA_kwDOCa0F0M4HWGLe", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2023-08-26T15:37:56Z", - "updated_at": "2023-08-26T15:37:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232991", - "id": 123232991, - "node_id": "RA_kwDOCa0F0M4HWGLf", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24222560, - "download_count": 8, - "created_at": "2023-08-26T15:37:56Z", - "updated_at": "2023-08-26T15:38:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232992", - "id": 123232992, - "node_id": "RA_kwDOCa0F0M4HWGLg", - "name": "cpython-3.10.13+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:37:56Z", - "updated_at": "2023-08-26T15:37:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232993", - "id": 123232993, - "node_id": "RA_kwDOCa0F0M4HWGLh", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32540213, - "download_count": 19, - "created_at": "2023-08-26T15:37:57Z", - "updated_at": "2023-08-26T15:37:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232994", - "id": 123232994, - "node_id": "RA_kwDOCa0F0M4HWGLi", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2023-08-26T15:37:57Z", - "updated_at": "2023-08-26T15:37:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232995", - "id": 123232995, - "node_id": "RA_kwDOCa0F0M4HWGLj", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23980115, - "download_count": 1649, - "created_at": "2023-08-26T15:37:58Z", - "updated_at": "2023-08-26T15:37:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232996", - "id": 123232996, - "node_id": "RA_kwDOCa0F0M4HWGLk", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2023-08-26T15:37:58Z", - "updated_at": "2023-08-26T15:37:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123232999", - "id": 123232999, - "node_id": "RA_kwDOCa0F0M4HWGLn", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 105826005, - "download_count": 42, - "created_at": "2023-08-26T15:37:59Z", - "updated_at": "2023-08-26T15:38:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233000", - "id": 123233000, - "node_id": "RA_kwDOCa0F0M4HWGLo", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 23, - "created_at": "2023-08-26T15:37:59Z", - "updated_at": "2023-08-26T15:37:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233001", - "id": 123233001, - "node_id": "RA_kwDOCa0F0M4HWGLp", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32643489, - "download_count": 9, - "created_at": "2023-08-26T15:37:59Z", - "updated_at": "2023-08-26T15:38:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233002", - "id": 123233002, - "node_id": "RA_kwDOCa0F0M4HWGLq", - "name": "cpython-3.10.13+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:37:59Z", - "updated_at": "2023-08-26T15:37:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233003", - "id": 123233003, - "node_id": "RA_kwDOCa0F0M4HWGLr", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35216138, - "download_count": 9, - "created_at": "2023-08-26T15:37:59Z", - "updated_at": "2023-08-26T15:38:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233004", - "id": 123233004, - "node_id": "RA_kwDOCa0F0M4HWGLs", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:00Z", - "updated_at": "2023-08-26T15:38:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233005", - "id": 123233005, - "node_id": "RA_kwDOCa0F0M4HWGLt", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34164735, - "download_count": 9, - "created_at": "2023-08-26T15:38:00Z", - "updated_at": "2023-08-26T15:38:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233006", - "id": 123233006, - "node_id": "RA_kwDOCa0F0M4HWGLu", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 32, - "created_at": "2023-08-26T15:38:00Z", - "updated_at": "2023-08-26T15:38:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233007", - "id": 123233007, - "node_id": "RA_kwDOCa0F0M4HWGLv", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39285677, - "download_count": 11, - "created_at": "2023-08-26T15:38:01Z", - "updated_at": "2023-08-26T15:38:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233008", - "id": 123233008, - "node_id": "RA_kwDOCa0F0M4HWGLw", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:01Z", - "updated_at": "2023-08-26T15:38:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233010", - "id": 123233010, - "node_id": "RA_kwDOCa0F0M4HWGLy", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34808262, - "download_count": 8, - "created_at": "2023-08-26T15:38:01Z", - "updated_at": "2023-08-26T15:38:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233009", - "id": 123233009, - "node_id": "RA_kwDOCa0F0M4HWGLx", - "name": "cpython-3.10.13+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:01Z", - "updated_at": "2023-08-26T15:38:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233011", - "id": 123233011, - "node_id": "RA_kwDOCa0F0M4HWGLz", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26063900, - "download_count": 17, - "created_at": "2023-08-26T15:38:02Z", - "updated_at": "2023-08-26T15:38:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233012", - "id": 123233012, - "node_id": "RA_kwDOCa0F0M4HWGL0", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 37, - "created_at": "2023-08-26T15:38:02Z", - "updated_at": "2023-08-26T15:38:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233013", - "id": 123233013, - "node_id": "RA_kwDOCa0F0M4HWGL1", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26338042, - "download_count": 25, - "created_at": "2023-08-26T15:38:03Z", - "updated_at": "2023-08-26T15:38:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233014", - "id": 123233014, - "node_id": "RA_kwDOCa0F0M4HWGL2", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:38:03Z", - "updated_at": "2023-08-26T15:38:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233015", - "id": 123233015, - "node_id": "RA_kwDOCa0F0M4HWGL3", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40246601, - "download_count": 7, - "created_at": "2023-08-26T15:38:03Z", - "updated_at": "2023-08-26T15:38:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233016", - "id": 123233016, - "node_id": "RA_kwDOCa0F0M4HWGL4", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:04Z", - "updated_at": "2023-08-26T15:38:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233021", - "id": 123233021, - "node_id": "RA_kwDOCa0F0M4HWGL9", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41855454, - "download_count": 13, - "created_at": "2023-08-26T15:38:05Z", - "updated_at": "2023-08-26T15:38:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233020", - "id": 123233020, - "node_id": "RA_kwDOCa0F0M4HWGL8", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 94, - "created_at": "2023-08-26T15:38:05Z", - "updated_at": "2023-08-26T15:38:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233022", - "id": 123233022, - "node_id": "RA_kwDOCa0F0M4HWGL-", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28082329, - "download_count": 7, - "created_at": "2023-08-26T15:38:05Z", - "updated_at": "2023-08-26T15:38:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233023", - "id": 123233023, - "node_id": "RA_kwDOCa0F0M4HWGL_", - "name": "cpython-3.10.13+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:05Z", - "updated_at": "2023-08-26T15:38:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233024", - "id": 123233024, - "node_id": "RA_kwDOCa0F0M4HWGMA", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33740270, - "download_count": 6, - "created_at": "2023-08-26T15:38:05Z", - "updated_at": "2023-08-26T15:38:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233025", - "id": 123233025, - "node_id": "RA_kwDOCa0F0M4HWGMB", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:06Z", - "updated_at": "2023-08-26T15:38:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233026", - "id": 123233026, - "node_id": "RA_kwDOCa0F0M4HWGMC", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24790386, - "download_count": 908, - "created_at": "2023-08-26T15:38:06Z", - "updated_at": "2023-08-26T15:38:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233027", - "id": 123233027, - "node_id": "RA_kwDOCa0F0M4HWGMD", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:06Z", - "updated_at": "2023-08-26T15:38:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233028", - "id": 123233028, - "node_id": "RA_kwDOCa0F0M4HWGME", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 118324649, - "download_count": 6, - "created_at": "2023-08-26T15:38:07Z", - "updated_at": "2023-08-26T15:38:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233030", - "id": 123233030, - "node_id": "RA_kwDOCa0F0M4HWGMG", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:07Z", - "updated_at": "2023-08-26T15:38:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233032", - "id": 123233032, - "node_id": "RA_kwDOCa0F0M4HWGMI", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33843944, - "download_count": 6, - "created_at": "2023-08-26T15:38:07Z", - "updated_at": "2023-08-26T15:38:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233033", - "id": 123233033, - "node_id": "RA_kwDOCa0F0M4HWGMJ", - "name": "cpython-3.10.13+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:07Z", - "updated_at": "2023-08-26T15:38:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233034", - "id": 123233034, - "node_id": "RA_kwDOCa0F0M4HWGMK", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34716504, - "download_count": 7, - "created_at": "2023-08-26T15:38:07Z", - "updated_at": "2023-08-26T15:38:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233035", - "id": 123233035, - "node_id": "RA_kwDOCa0F0M4HWGML", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:08Z", - "updated_at": "2023-08-26T15:38:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233036", - "id": 123233036, - "node_id": "RA_kwDOCa0F0M4HWGMM", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25300366, - "download_count": 914, - "created_at": "2023-08-26T15:38:08Z", - "updated_at": "2023-08-26T15:38:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233037", - "id": 123233037, - "node_id": "RA_kwDOCa0F0M4HWGMN", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:10Z", - "updated_at": "2023-08-26T15:38:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233038", - "id": 123233038, - "node_id": "RA_kwDOCa0F0M4HWGMO", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 125637131, - "download_count": 6, - "created_at": "2023-08-26T15:38:10Z", - "updated_at": "2023-08-26T15:38:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233039", - "id": 123233039, - "node_id": "RA_kwDOCa0F0M4HWGMP", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:10Z", - "updated_at": "2023-08-26T15:38:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233040", - "id": 123233040, - "node_id": "RA_kwDOCa0F0M4HWGMQ", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35202906, - "download_count": 6, - "created_at": "2023-08-26T15:38:10Z", - "updated_at": "2023-08-26T15:38:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233044", - "id": 123233044, - "node_id": "RA_kwDOCa0F0M4HWGMU", - "name": "cpython-3.10.13+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:10Z", - "updated_at": "2023-08-26T15:38:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233045", - "id": 123233045, - "node_id": "RA_kwDOCa0F0M4HWGMV", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 22335558, - "download_count": 6, - "created_at": "2023-08-26T15:38:11Z", - "updated_at": "2023-08-26T15:38:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233047", - "id": 123233047, - "node_id": "RA_kwDOCa0F0M4HWGMX", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:12Z", - "updated_at": "2023-08-26T15:38:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233048", - "id": 123233048, - "node_id": "RA_kwDOCa0F0M4HWGMY", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17103383, - "download_count": 1619, - "created_at": "2023-08-26T15:38:12Z", - "updated_at": "2023-08-26T15:38:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233049", - "id": 123233049, - "node_id": "RA_kwDOCa0F0M4HWGMZ", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:12Z", - "updated_at": "2023-08-26T15:38:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233050", - "id": 123233050, - "node_id": "RA_kwDOCa0F0M4HWGMa", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31571409, - "download_count": 8, - "created_at": "2023-08-26T15:38:12Z", - "updated_at": "2023-08-26T15:38:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233051", - "id": 123233051, - "node_id": "RA_kwDOCa0F0M4HWGMb", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:13Z", - "updated_at": "2023-08-26T15:38:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233052", - "id": 123233052, - "node_id": "RA_kwDOCa0F0M4HWGMc", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32836826, - "download_count": 77, - "created_at": "2023-08-26T15:38:13Z", - "updated_at": "2023-08-26T15:38:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233056", - "id": 123233056, - "node_id": "RA_kwDOCa0F0M4HWGMg", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:14Z", - "updated_at": "2023-08-26T15:38:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233057", - "id": 123233057, - "node_id": "RA_kwDOCa0F0M4HWGMh", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23783575, - "download_count": 6, - "created_at": "2023-08-26T15:38:14Z", - "updated_at": "2023-08-26T15:38:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233058", - "id": 123233058, - "node_id": "RA_kwDOCa0F0M4HWGMi", - "name": "cpython-3.10.13+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:14Z", - "updated_at": "2023-08-26T15:38:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233059", - "id": 123233059, - "node_id": "RA_kwDOCa0F0M4HWGMj", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36049830, - "download_count": 2939, - "created_at": "2023-08-26T15:38:15Z", - "updated_at": "2023-08-26T15:38:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233060", - "id": 123233060, - "node_id": "RA_kwDOCa0F0M4HWGMk", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 247, - "created_at": "2023-08-26T15:38:15Z", - "updated_at": "2023-08-26T15:38:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233061", - "id": 123233061, - "node_id": "RA_kwDOCa0F0M4HWGMl", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34780168, - "download_count": 139, - "created_at": "2023-08-26T15:38:15Z", - "updated_at": "2023-08-26T15:38:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233063", - "id": 123233063, - "node_id": "RA_kwDOCa0F0M4HWGMn", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 38, - "created_at": "2023-08-26T15:38:16Z", - "updated_at": "2023-08-26T15:38:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233064", - "id": 123233064, - "node_id": "RA_kwDOCa0F0M4HWGMo", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40640417, - "download_count": 40, - "created_at": "2023-08-26T15:38:16Z", - "updated_at": "2023-08-26T15:38:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233066", - "id": 123233066, - "node_id": "RA_kwDOCa0F0M4HWGMq", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:16Z", - "updated_at": "2023-08-26T15:38:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233067", - "id": 123233067, - "node_id": "RA_kwDOCa0F0M4HWGMr", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37966241, - "download_count": 10, - "created_at": "2023-08-26T15:38:16Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233068", - "id": 123233068, - "node_id": "RA_kwDOCa0F0M4HWGMs", - "name": "cpython-3.10.13+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:16Z", - "updated_at": "2023-08-26T15:38:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233069", - "id": 123233069, - "node_id": "RA_kwDOCa0F0M4HWGMt", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25584050, - "download_count": 10, - "created_at": "2023-08-26T15:38:17Z", - "updated_at": "2023-08-26T15:38:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233070", - "id": 123233070, - "node_id": "RA_kwDOCa0F0M4HWGMu", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:17Z", - "updated_at": "2023-08-26T15:38:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233071", - "id": 123233071, - "node_id": "RA_kwDOCa0F0M4HWGMv", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26421821, - "download_count": 6741, - "created_at": "2023-08-26T15:38:17Z", - "updated_at": "2023-08-26T15:38:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233073", - "id": 123233073, - "node_id": "RA_kwDOCa0F0M4HWGMx", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:18Z", - "updated_at": "2023-08-26T15:38:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233074", - "id": 123233074, - "node_id": "RA_kwDOCa0F0M4HWGMy", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40194149, - "download_count": 22, - "created_at": "2023-08-26T15:38:18Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233075", - "id": 123233075, - "node_id": "RA_kwDOCa0F0M4HWGMz", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:18Z", - "updated_at": "2023-08-26T15:38:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233078", - "id": 123233078, - "node_id": "RA_kwDOCa0F0M4HWGM2", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41942703, - "download_count": 1747, - "created_at": "2023-08-26T15:38:18Z", - "updated_at": "2023-08-26T15:38:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233080", - "id": 123233080, - "node_id": "RA_kwDOCa0F0M4HWGM4", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2023-08-26T15:38:18Z", - "updated_at": "2023-08-26T15:38:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233081", - "id": 123233081, - "node_id": "RA_kwDOCa0F0M4HWGM5", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28211638, - "download_count": 13, - "created_at": "2023-08-26T15:38:19Z", - "updated_at": "2023-08-26T15:38:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233082", - "id": 123233082, - "node_id": "RA_kwDOCa0F0M4HWGM6", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:19Z", - "updated_at": "2023-08-26T15:38:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233083", - "id": 123233083, - "node_id": "RA_kwDOCa0F0M4HWGM7", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24829112, - "download_count": 9, - "created_at": "2023-08-26T15:38:19Z", - "updated_at": "2023-08-26T15:38:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233085", - "id": 123233085, - "node_id": "RA_kwDOCa0F0M4HWGM9", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:19Z", - "updated_at": "2023-08-26T15:38:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233086", - "id": 123233086, - "node_id": "RA_kwDOCa0F0M4HWGM-", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24773404, - "download_count": 81, - "created_at": "2023-08-26T15:38:20Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233087", - "id": 123233087, - "node_id": "RA_kwDOCa0F0M4HWGM_", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:20Z", - "updated_at": "2023-08-26T15:38:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233088", - "id": 123233088, - "node_id": "RA_kwDOCa0F0M4HWGNA", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39033265, - "download_count": 12, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233089", - "id": 123233089, - "node_id": "RA_kwDOCa0F0M4HWGNB", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233090", - "id": 123233090, - "node_id": "RA_kwDOCa0F0M4HWGNC", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26912069, - "download_count": 10, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233091", - "id": 123233091, - "node_id": "RA_kwDOCa0F0M4HWGND", - "name": "cpython-3.10.13+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233092", - "id": 123233092, - "node_id": "RA_kwDOCa0F0M4HWGNE", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25544940, - "download_count": 6, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233093", - "id": 123233093, - "node_id": "RA_kwDOCa0F0M4HWGNF", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:21Z", - "updated_at": "2023-08-26T15:38:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233094", - "id": 123233094, - "node_id": "RA_kwDOCa0F0M4HWGNG", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26336887, - "download_count": 274, - "created_at": "2023-08-26T15:38:22Z", - "updated_at": "2023-08-26T15:38:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233095", - "id": 123233095, - "node_id": "RA_kwDOCa0F0M4HWGNH", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:22Z", - "updated_at": "2023-08-26T15:38:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233096", - "id": 123233096, - "node_id": "RA_kwDOCa0F0M4HWGNI", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40115591, - "download_count": 7, - "created_at": "2023-08-26T15:38:22Z", - "updated_at": "2023-08-26T15:38:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233097", - "id": 123233097, - "node_id": "RA_kwDOCa0F0M4HWGNJ", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:22Z", - "updated_at": "2023-08-26T15:38:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233098", - "id": 123233098, - "node_id": "RA_kwDOCa0F0M4HWGNK", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41854039, - "download_count": 7, - "created_at": "2023-08-26T15:38:23Z", - "updated_at": "2023-08-26T15:38:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233099", - "id": 123233099, - "node_id": "RA_kwDOCa0F0M4HWGNL", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:38:23Z", - "updated_at": "2023-08-26T15:38:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233100", - "id": 123233100, - "node_id": "RA_kwDOCa0F0M4HWGNM", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28174103, - "download_count": 7, - "created_at": "2023-08-26T15:38:23Z", - "updated_at": "2023-08-26T15:38:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233102", - "id": 123233102, - "node_id": "RA_kwDOCa0F0M4HWGNO", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2023-08-26T15:38:23Z", - "updated_at": "2023-08-26T15:38:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233104", - "id": 123233104, - "node_id": "RA_kwDOCa0F0M4HWGNQ", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24836496, - "download_count": 6, - "created_at": "2023-08-26T15:38:24Z", - "updated_at": "2023-08-26T15:38:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233105", - "id": 123233105, - "node_id": "RA_kwDOCa0F0M4HWGNR", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:24Z", - "updated_at": "2023-08-26T15:38:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233106", - "id": 123233106, - "node_id": "RA_kwDOCa0F0M4HWGNS", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24745749, - "download_count": 6, - "created_at": "2023-08-26T15:38:24Z", - "updated_at": "2023-08-26T15:38:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233107", - "id": 123233107, - "node_id": "RA_kwDOCa0F0M4HWGNT", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:25Z", - "updated_at": "2023-08-26T15:38:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233108", - "id": 123233108, - "node_id": "RA_kwDOCa0F0M4HWGNU", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38974404, - "download_count": 8, - "created_at": "2023-08-26T15:38:25Z", - "updated_at": "2023-08-26T15:38:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233109", - "id": 123233109, - "node_id": "RA_kwDOCa0F0M4HWGNV", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:25Z", - "updated_at": "2023-08-26T15:38:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233110", - "id": 123233110, - "node_id": "RA_kwDOCa0F0M4HWGNW", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26894563, - "download_count": 7, - "created_at": "2023-08-26T15:38:26Z", - "updated_at": "2023-08-26T15:38:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233111", - "id": 123233111, - "node_id": "RA_kwDOCa0F0M4HWGNX", - "name": "cpython-3.10.13+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:26Z", - "updated_at": "2023-08-26T15:38:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233112", - "id": 123233112, - "node_id": "RA_kwDOCa0F0M4HWGNY", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25567798, - "download_count": 7, - "created_at": "2023-08-26T15:38:26Z", - "updated_at": "2023-08-26T15:38:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233113", - "id": 123233113, - "node_id": "RA_kwDOCa0F0M4HWGNZ", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:27Z", - "updated_at": "2023-08-26T15:38:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233114", - "id": 123233114, - "node_id": "RA_kwDOCa0F0M4HWGNa", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26369879, - "download_count": 2772, - "created_at": "2023-08-26T15:38:27Z", - "updated_at": "2023-08-26T15:38:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233116", - "id": 123233116, - "node_id": "RA_kwDOCa0F0M4HWGNc", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233117", - "id": 123233117, - "node_id": "RA_kwDOCa0F0M4HWGNd", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40310888, - "download_count": 7, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233118", - "id": 123233118, - "node_id": "RA_kwDOCa0F0M4HWGNe", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233119", - "id": 123233119, - "node_id": "RA_kwDOCa0F0M4HWGNf", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41880438, - "download_count": 15, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233120", - "id": 123233120, - "node_id": "RA_kwDOCa0F0M4HWGNg", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233121", - "id": 123233121, - "node_id": "RA_kwDOCa0F0M4HWGNh", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28203815, - "download_count": 6, - "created_at": "2023-08-26T15:38:28Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233122", - "id": 123233122, - "node_id": "RA_kwDOCa0F0M4HWGNi", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2023-08-26T15:38:29Z", - "updated_at": "2023-08-26T15:38:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233123", - "id": 123233123, - "node_id": "RA_kwDOCa0F0M4HWGNj", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24867079, - "download_count": 6, - "created_at": "2023-08-26T15:38:29Z", - "updated_at": "2023-08-26T15:38:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233124", - "id": 123233124, - "node_id": "RA_kwDOCa0F0M4HWGNk", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:29Z", - "updated_at": "2023-08-26T15:38:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233125", - "id": 123233125, - "node_id": "RA_kwDOCa0F0M4HWGNl", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24843541, - "download_count": 85, - "created_at": "2023-08-26T15:38:30Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233128", - "id": 123233128, - "node_id": "RA_kwDOCa0F0M4HWGNo", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:30Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233129", - "id": 123233129, - "node_id": "RA_kwDOCa0F0M4HWGNp", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39183904, - "download_count": 7, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233130", - "id": 123233130, - "node_id": "RA_kwDOCa0F0M4HWGNq", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233131", - "id": 123233131, - "node_id": "RA_kwDOCa0F0M4HWGNr", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26958526, - "download_count": 7, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233132", - "id": 123233132, - "node_id": "RA_kwDOCa0F0M4HWGNs", - "name": "cpython-3.10.13+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233134", - "id": 123233134, - "node_id": "RA_kwDOCa0F0M4HWGNu", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25564198, - "download_count": 6, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233135", - "id": 123233135, - "node_id": "RA_kwDOCa0F0M4HWGNv", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233136", - "id": 123233136, - "node_id": "RA_kwDOCa0F0M4HWGNw", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25682144, - "download_count": 17, - "created_at": "2023-08-26T15:38:31Z", - "updated_at": "2023-08-26T15:38:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233137", - "id": 123233137, - "node_id": "RA_kwDOCa0F0M4HWGNx", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:32Z", - "updated_at": "2023-08-26T15:38:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233138", - "id": 123233138, - "node_id": "RA_kwDOCa0F0M4HWGNy", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40314780, - "download_count": 7, - "created_at": "2023-08-26T15:38:32Z", - "updated_at": "2023-08-26T15:38:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233139", - "id": 123233139, - "node_id": "RA_kwDOCa0F0M4HWGNz", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:32Z", - "updated_at": "2023-08-26T15:38:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233140", - "id": 123233140, - "node_id": "RA_kwDOCa0F0M4HWGN0", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27625389, - "download_count": 6, - "created_at": "2023-08-26T15:38:32Z", - "updated_at": "2023-08-26T15:38:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233142", - "id": 123233142, - "node_id": "RA_kwDOCa0F0M4HWGN2", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233141", - "id": 123233141, - "node_id": "RA_kwDOCa0F0M4HWGN1", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24869730, - "download_count": 6, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233143", - "id": 123233143, - "node_id": "RA_kwDOCa0F0M4HWGN3", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233144", - "id": 123233144, - "node_id": "RA_kwDOCa0F0M4HWGN4", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24845118, - "download_count": 7, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233145", - "id": 123233145, - "node_id": "RA_kwDOCa0F0M4HWGN5", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233146", - "id": 123233146, - "node_id": "RA_kwDOCa0F0M4HWGN6", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39158546, - "download_count": 6, - "created_at": "2023-08-26T15:38:33Z", - "updated_at": "2023-08-26T15:38:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233147", - "id": 123233147, - "node_id": "RA_kwDOCa0F0M4HWGN7", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:34Z", - "updated_at": "2023-08-26T15:38:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233148", - "id": 123233148, - "node_id": "RA_kwDOCa0F0M4HWGN8", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26965645, - "download_count": 6, - "created_at": "2023-08-26T15:38:34Z", - "updated_at": "2023-08-26T15:38:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233149", - "id": 123233149, - "node_id": "RA_kwDOCa0F0M4HWGN9", - "name": "cpython-3.10.13+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:34Z", - "updated_at": "2023-08-26T15:38:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233150", - "id": 123233150, - "node_id": "RA_kwDOCa0F0M4HWGN-", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27005019, - "download_count": 10, - "created_at": "2023-08-26T15:38:34Z", - "updated_at": "2023-08-26T15:38:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233151", - "id": 123233151, - "node_id": "RA_kwDOCa0F0M4HWGN_", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:35Z", - "updated_at": "2023-08-26T15:38:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233152", - "id": 123233152, - "node_id": "RA_kwDOCa0F0M4HWGOA", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17379941, - "download_count": 16037, - "created_at": "2023-08-26T15:38:35Z", - "updated_at": "2023-08-26T15:38:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233153", - "id": 123233153, - "node_id": "RA_kwDOCa0F0M4HWGOB", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 39, - "created_at": "2023-08-26T15:38:35Z", - "updated_at": "2023-08-26T15:38:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233154", - "id": 123233154, - "node_id": "RA_kwDOCa0F0M4HWGOC", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34770182, - "download_count": 8, - "created_at": "2023-08-26T15:38:35Z", - "updated_at": "2023-08-26T15:38:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233155", - "id": 123233155, - "node_id": "RA_kwDOCa0F0M4HWGOD", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:35Z", - "updated_at": "2023-08-26T15:38:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233156", - "id": 123233156, - "node_id": "RA_kwDOCa0F0M4HWGOE", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36339419, - "download_count": 961, - "created_at": "2023-08-26T15:38:36Z", - "updated_at": "2023-08-26T15:38:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233157", - "id": 123233157, - "node_id": "RA_kwDOCa0F0M4HWGOF", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 127, - "created_at": "2023-08-26T15:38:36Z", - "updated_at": "2023-08-26T15:38:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233158", - "id": 123233158, - "node_id": "RA_kwDOCa0F0M4HWGOG", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25826916, - "download_count": 6, - "created_at": "2023-08-26T15:38:36Z", - "updated_at": "2023-08-26T15:38:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233159", - "id": 123233159, - "node_id": "RA_kwDOCa0F0M4HWGOH", - "name": "cpython-3.11.5+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:36Z", - "updated_at": "2023-08-26T15:38:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233160", - "id": 123233160, - "node_id": "RA_kwDOCa0F0M4HWGOI", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36822890, - "download_count": 14, - "created_at": "2023-08-26T15:38:37Z", - "updated_at": "2023-08-26T15:38:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233161", - "id": 123233161, - "node_id": "RA_kwDOCa0F0M4HWGOJ", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:37Z", - "updated_at": "2023-08-26T15:38:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233162", - "id": 123233162, - "node_id": "RA_kwDOCa0F0M4HWGOK", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25085307, - "download_count": 398, - "created_at": "2023-08-26T15:38:37Z", - "updated_at": "2023-08-26T15:38:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233163", - "id": 123233163, - "node_id": "RA_kwDOCa0F0M4HWGOL", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 38, - "created_at": "2023-08-26T15:38:37Z", - "updated_at": "2023-08-26T15:38:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233164", - "id": 123233164, - "node_id": "RA_kwDOCa0F0M4HWGOM", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 139812168, - "download_count": 2946, - "created_at": "2023-08-26T15:38:38Z", - "updated_at": "2023-08-26T15:38:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233165", - "id": 123233165, - "node_id": "RA_kwDOCa0F0M4HWGON", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 85, - "created_at": "2023-08-26T15:38:38Z", - "updated_at": "2023-08-26T15:38:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233166", - "id": 123233166, - "node_id": "RA_kwDOCa0F0M4HWGOO", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36676400, - "download_count": 11, - "created_at": "2023-08-26T15:38:38Z", - "updated_at": "2023-08-26T15:38:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233167", - "id": 123233167, - "node_id": "RA_kwDOCa0F0M4HWGOP", - "name": "cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:38Z", - "updated_at": "2023-08-26T15:38:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233168", - "id": 123233168, - "node_id": "RA_kwDOCa0F0M4HWGOQ", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38310546, - "download_count": 23, - "created_at": "2023-08-26T15:38:38Z", - "updated_at": "2023-08-26T15:38:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233169", - "id": 123233169, - "node_id": "RA_kwDOCa0F0M4HWGOR", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:39Z", - "updated_at": "2023-08-26T15:38:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233170", - "id": 123233170, - "node_id": "RA_kwDOCa0F0M4HWGOS", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38013096, - "download_count": 28, - "created_at": "2023-08-26T15:38:39Z", - "updated_at": "2023-08-26T15:38:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233171", - "id": 123233171, - "node_id": "RA_kwDOCa0F0M4HWGOT", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 118, - "created_at": "2023-08-26T15:38:39Z", - "updated_at": "2023-08-26T15:38:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233172", - "id": 123233172, - "node_id": "RA_kwDOCa0F0M4HWGOU", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42947637, - "download_count": 10, - "created_at": "2023-08-26T15:38:40Z", - "updated_at": "2023-08-26T15:38:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233178", - "id": 123233178, - "node_id": "RA_kwDOCa0F0M4HWGOa", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:41Z", - "updated_at": "2023-08-26T15:38:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233176", - "id": 123233176, - "node_id": "RA_kwDOCa0F0M4HWGOY", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37608075, - "download_count": 9, - "created_at": "2023-08-26T15:38:40Z", - "updated_at": "2023-08-26T15:38:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233177", - "id": 123233177, - "node_id": "RA_kwDOCa0F0M4HWGOZ", - "name": "cpython-3.11.5+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:41Z", - "updated_at": "2023-08-26T15:38:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233179", - "id": 123233179, - "node_id": "RA_kwDOCa0F0M4HWGOb", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30738608, - "download_count": 28, - "created_at": "2023-08-26T15:38:41Z", - "updated_at": "2023-08-26T15:38:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233181", - "id": 123233181, - "node_id": "RA_kwDOCa0F0M4HWGOd", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:42Z", - "updated_at": "2023-08-26T15:38:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233183", - "id": 123233183, - "node_id": "RA_kwDOCa0F0M4HWGOf", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28643224, - "download_count": 44, - "created_at": "2023-08-26T15:38:42Z", - "updated_at": "2023-08-26T15:38:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233184", - "id": 123233184, - "node_id": "RA_kwDOCa0F0M4HWGOg", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:42Z", - "updated_at": "2023-08-26T15:38:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233185", - "id": 123233185, - "node_id": "RA_kwDOCa0F0M4HWGOh", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 47803069, - "download_count": 7, - "created_at": "2023-08-26T15:38:42Z", - "updated_at": "2023-08-26T15:38:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233187", - "id": 123233187, - "node_id": "RA_kwDOCa0F0M4HWGOj", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:42Z", - "updated_at": "2023-08-26T15:38:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233189", - "id": 123233189, - "node_id": "RA_kwDOCa0F0M4HWGOl", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 52438113, - "download_count": 12, - "created_at": "2023-08-26T15:38:43Z", - "updated_at": "2023-08-26T15:38:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233190", - "id": 123233190, - "node_id": "RA_kwDOCa0F0M4HWGOm", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 95, - "created_at": "2023-08-26T15:38:43Z", - "updated_at": "2023-08-26T15:38:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233191", - "id": 123233191, - "node_id": "RA_kwDOCa0F0M4HWGOn", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29960805, - "download_count": 7, - "created_at": "2023-08-26T15:38:43Z", - "updated_at": "2023-08-26T15:38:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233192", - "id": 123233192, - "node_id": "RA_kwDOCa0F0M4HWGOo", - "name": "cpython-3.11.5+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:44Z", - "updated_at": "2023-08-26T15:38:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233194", - "id": 123233194, - "node_id": "RA_kwDOCa0F0M4HWGOq", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41194070, - "download_count": 14, - "created_at": "2023-08-26T15:38:44Z", - "updated_at": "2023-08-26T15:38:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233195", - "id": 123233195, - "node_id": "RA_kwDOCa0F0M4HWGOr", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:38:45Z", - "updated_at": "2023-08-26T15:38:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233196", - "id": 123233196, - "node_id": "RA_kwDOCa0F0M4HWGOs", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25896858, - "download_count": 118, - "created_at": "2023-08-26T15:38:45Z", - "updated_at": "2023-08-26T15:38:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233197", - "id": 123233197, - "node_id": "RA_kwDOCa0F0M4HWGOt", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:45Z", - "updated_at": "2023-08-26T15:38:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233198", - "id": 123233198, - "node_id": "RA_kwDOCa0F0M4HWGOu", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 141223021, - "download_count": 6, - "created_at": "2023-08-26T15:38:46Z", - "updated_at": "2023-08-26T15:38:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233199", - "id": 123233199, - "node_id": "RA_kwDOCa0F0M4HWGOv", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2023-08-26T15:38:46Z", - "updated_at": "2023-08-26T15:38:46Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233200", - "id": 123233200, - "node_id": "RA_kwDOCa0F0M4HWGOw", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41267975, - "download_count": 6, - "created_at": "2023-08-26T15:38:46Z", - "updated_at": "2023-08-26T15:38:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233201", - "id": 123233201, - "node_id": "RA_kwDOCa0F0M4HWGOx", - "name": "cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:38:46Z", - "updated_at": "2023-08-26T15:38:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233202", - "id": 123233202, - "node_id": "RA_kwDOCa0F0M4HWGOy", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42731864, - "download_count": 18, - "created_at": "2023-08-26T15:38:47Z", - "updated_at": "2023-08-26T15:38:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233203", - "id": 123233203, - "node_id": "RA_kwDOCa0F0M4HWGOz", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:38:47Z", - "updated_at": "2023-08-26T15:38:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233204", - "id": 123233204, - "node_id": "RA_kwDOCa0F0M4HWGO0", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26518844, - "download_count": 16, - "created_at": "2023-08-26T15:38:47Z", - "updated_at": "2023-08-26T15:38:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233205", - "id": 123233205, - "node_id": "RA_kwDOCa0F0M4HWGO1", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:47Z", - "updated_at": "2023-08-26T15:38:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233206", - "id": 123233206, - "node_id": "RA_kwDOCa0F0M4HWGO2", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 143211469, - "download_count": 6, - "created_at": "2023-08-26T15:38:48Z", - "updated_at": "2023-08-26T15:39:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233207", - "id": 123233207, - "node_id": "RA_kwDOCa0F0M4HWGO3", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2023-08-26T15:38:49Z", - "updated_at": "2023-08-26T15:38:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233208", - "id": 123233208, - "node_id": "RA_kwDOCa0F0M4HWGO4", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 43335167, - "download_count": 7, - "created_at": "2023-08-26T15:38:49Z", - "updated_at": "2023-08-26T15:38:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233209", - "id": 123233209, - "node_id": "RA_kwDOCa0F0M4HWGO5", - "name": "cpython-3.11.5+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:50Z", - "updated_at": "2023-08-26T15:38:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233213", - "id": 123233213, - "node_id": "RA_kwDOCa0F0M4HWGO9", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26263422, - "download_count": 7, - "created_at": "2023-08-26T15:38:50Z", - "updated_at": "2023-08-26T15:38:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233215", - "id": 123233215, - "node_id": "RA_kwDOCa0F0M4HWGO_", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:51Z", - "updated_at": "2023-08-26T15:38:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233216", - "id": 123233216, - "node_id": "RA_kwDOCa0F0M4HWGPA", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 17702502, - "download_count": 17315, - "created_at": "2023-08-26T15:38:51Z", - "updated_at": "2023-08-26T15:38:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233217", - "id": 123233217, - "node_id": "RA_kwDOCa0F0M4HWGPB", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 40, - "created_at": "2023-08-26T15:38:51Z", - "updated_at": "2023-08-26T15:38:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233218", - "id": 123233218, - "node_id": "RA_kwDOCa0F0M4HWGPC", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34775413, - "download_count": 8, - "created_at": "2023-08-26T15:38:51Z", - "updated_at": "2023-08-26T15:38:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233219", - "id": 123233219, - "node_id": "RA_kwDOCa0F0M4HWGPD", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:52Z", - "updated_at": "2023-08-26T15:38:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233220", - "id": 123233220, - "node_id": "RA_kwDOCa0F0M4HWGPE", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36225406, - "download_count": 478, - "created_at": "2023-08-26T15:38:52Z", - "updated_at": "2023-08-26T15:38:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233221", - "id": 123233221, - "node_id": "RA_kwDOCa0F0M4HWGPF", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 221, - "created_at": "2023-08-26T15:38:52Z", - "updated_at": "2023-08-26T15:38:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233222", - "id": 123233222, - "node_id": "RA_kwDOCa0F0M4HWGPG", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25361433, - "download_count": 6, - "created_at": "2023-08-26T15:38:52Z", - "updated_at": "2023-08-26T15:38:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233223", - "id": 123233223, - "node_id": "RA_kwDOCa0F0M4HWGPH", - "name": "cpython-3.11.5+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:38:52Z", - "updated_at": "2023-08-26T15:38:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233224", - "id": 123233224, - "node_id": "RA_kwDOCa0F0M4HWGPI", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39162835, - "download_count": 47986, - "created_at": "2023-08-26T15:38:53Z", - "updated_at": "2023-08-26T15:38:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233225", - "id": 123233225, - "node_id": "RA_kwDOCa0F0M4HWGPJ", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2023-08-26T15:38:53Z", - "updated_at": "2023-08-26T15:38:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233226", - "id": 123233226, - "node_id": "RA_kwDOCa0F0M4HWGPK", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38680239, - "download_count": 1072, - "created_at": "2023-08-26T15:38:53Z", - "updated_at": "2023-08-26T15:38:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233227", - "id": 123233227, - "node_id": "RA_kwDOCa0F0M4HWGPL", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 218, - "created_at": "2023-08-26T15:38:53Z", - "updated_at": "2023-08-26T15:38:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233228", - "id": 123233228, - "node_id": "RA_kwDOCa0F0M4HWGPM", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44270987, - "download_count": 28, - "created_at": "2023-08-26T15:38:54Z", - "updated_at": "2023-08-26T15:38:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233229", - "id": 123233229, - "node_id": "RA_kwDOCa0F0M4HWGPN", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:54Z", - "updated_at": "2023-08-26T15:38:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233230", - "id": 123233230, - "node_id": "RA_kwDOCa0F0M4HWGPO", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40723965, - "download_count": 17, - "created_at": "2023-08-26T15:38:54Z", - "updated_at": "2023-08-26T15:38:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233231", - "id": 123233231, - "node_id": "RA_kwDOCa0F0M4HWGPP", - "name": "cpython-3.11.5+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:38:54Z", - "updated_at": "2023-08-26T15:38:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233232", - "id": 123233232, - "node_id": "RA_kwDOCa0F0M4HWGPQ", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32019423, - "download_count": 168, - "created_at": "2023-08-26T15:38:55Z", - "updated_at": "2023-08-26T15:38:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233235", - "id": 123233235, - "node_id": "RA_kwDOCa0F0M4HWGPT", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 36, - "created_at": "2023-08-26T15:38:55Z", - "updated_at": "2023-08-26T15:38:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233237", - "id": 123233237, - "node_id": "RA_kwDOCa0F0M4HWGPV", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28705307, - "download_count": 41399, - "created_at": "2023-08-26T15:38:56Z", - "updated_at": "2023-08-26T15:38:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233238", - "id": 123233238, - "node_id": "RA_kwDOCa0F0M4HWGPW", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 52, - "created_at": "2023-08-26T15:38:56Z", - "updated_at": "2023-08-26T15:38:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233239", - "id": 123233239, - "node_id": "RA_kwDOCa0F0M4HWGPX", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50859477, - "download_count": 23, - "created_at": "2023-08-26T15:38:56Z", - "updated_at": "2023-08-26T15:38:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233240", - "id": 123233240, - "node_id": "RA_kwDOCa0F0M4HWGPY", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:56Z", - "updated_at": "2023-08-26T15:38:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233243", - "id": 123233243, - "node_id": "RA_kwDOCa0F0M4HWGPb", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 53959489, - "download_count": 20084, - "created_at": "2023-08-26T15:38:57Z", - "updated_at": "2023-08-26T15:38:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233244", - "id": 123233244, - "node_id": "RA_kwDOCa0F0M4HWGPc", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 208, - "created_at": "2023-08-26T15:38:57Z", - "updated_at": "2023-08-26T15:38:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233246", - "id": 123233246, - "node_id": "RA_kwDOCa0F0M4HWGPe", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30248585, - "download_count": 15, - "created_at": "2023-08-26T15:38:57Z", - "updated_at": "2023-08-26T15:38:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233248", - "id": 123233248, - "node_id": "RA_kwDOCa0F0M4HWGPg", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 26, - "created_at": "2023-08-26T15:38:57Z", - "updated_at": "2023-08-26T15:38:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233250", - "id": 123233250, - "node_id": "RA_kwDOCa0F0M4HWGPi", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30307577, - "download_count": 6, - "created_at": "2023-08-26T15:38:57Z", - "updated_at": "2023-08-26T15:38:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233256", - "id": 123233256, - "node_id": "RA_kwDOCa0F0M4HWGPo", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:38:58Z", - "updated_at": "2023-08-26T15:38:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233261", - "id": 123233261, - "node_id": "RA_kwDOCa0F0M4HWGPt", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27079633, - "download_count": 254, - "created_at": "2023-08-26T15:38:58Z", - "updated_at": "2023-08-26T15:38:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233262", - "id": 123233262, - "node_id": "RA_kwDOCa0F0M4HWGPu", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:38:58Z", - "updated_at": "2023-08-26T15:38:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233263", - "id": 123233263, - "node_id": "RA_kwDOCa0F0M4HWGPv", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48289546, - "download_count": 23, - "created_at": "2023-08-26T15:38:59Z", - "updated_at": "2023-08-26T15:39:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233264", - "id": 123233264, - "node_id": "RA_kwDOCa0F0M4HWGPw", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 50, - "created_at": "2023-08-26T15:38:59Z", - "updated_at": "2023-08-26T15:38:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233265", - "id": 123233265, - "node_id": "RA_kwDOCa0F0M4HWGPx", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28686507, - "download_count": 11, - "created_at": "2023-08-26T15:38:59Z", - "updated_at": "2023-08-26T15:39:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233267", - "id": 123233267, - "node_id": "RA_kwDOCa0F0M4HWGPz", - "name": "cpython-3.11.5+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:39:00Z", - "updated_at": "2023-08-26T15:39:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233268", - "id": 123233268, - "node_id": "RA_kwDOCa0F0M4HWGP0", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32002161, - "download_count": 8, - "created_at": "2023-08-26T15:39:00Z", - "updated_at": "2023-08-26T15:39:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233269", - "id": 123233269, - "node_id": "RA_kwDOCa0F0M4HWGP1", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2023-08-26T15:39:00Z", - "updated_at": "2023-08-26T15:39:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233270", - "id": 123233270, - "node_id": "RA_kwDOCa0F0M4HWGP2", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28548356, - "download_count": 532, - "created_at": "2023-08-26T15:39:00Z", - "updated_at": "2023-08-26T15:39:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233271", - "id": 123233271, - "node_id": "RA_kwDOCa0F0M4HWGP3", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:00Z", - "updated_at": "2023-08-26T15:39:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233272", - "id": 123233272, - "node_id": "RA_kwDOCa0F0M4HWGP4", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 50771978, - "download_count": 7, - "created_at": "2023-08-26T15:39:01Z", - "updated_at": "2023-08-26T15:39:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233274", - "id": 123233274, - "node_id": "RA_kwDOCa0F0M4HWGP6", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:01Z", - "updated_at": "2023-08-26T15:39:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233273", - "id": 123233273, - "node_id": "RA_kwDOCa0F0M4HWGP5", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 53804540, - "download_count": 33, - "created_at": "2023-08-26T15:39:01Z", - "updated_at": "2023-08-26T15:39:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233276", - "id": 123233276, - "node_id": "RA_kwDOCa0F0M4HWGP8", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 28, - "created_at": "2023-08-26T15:39:01Z", - "updated_at": "2023-08-26T15:39:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233277", - "id": 123233277, - "node_id": "RA_kwDOCa0F0M4HWGP9", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30207030, - "download_count": 14, - "created_at": "2023-08-26T15:39:01Z", - "updated_at": "2023-08-26T15:39:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233278", - "id": 123233278, - "node_id": "RA_kwDOCa0F0M4HWGP-", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:39:02Z", - "updated_at": "2023-08-26T15:39:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233280", - "id": 123233280, - "node_id": "RA_kwDOCa0F0M4HWGQA", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30092125, - "download_count": 6, - "created_at": "2023-08-26T15:39:02Z", - "updated_at": "2023-08-26T15:39:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233281", - "id": 123233281, - "node_id": "RA_kwDOCa0F0M4HWGQB", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:02Z", - "updated_at": "2023-08-26T15:39:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233282", - "id": 123233282, - "node_id": "RA_kwDOCa0F0M4HWGQC", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27050345, - "download_count": 7, - "created_at": "2023-08-26T15:39:03Z", - "updated_at": "2023-08-26T15:39:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233283", - "id": 123233283, - "node_id": "RA_kwDOCa0F0M4HWGQD", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:03Z", - "updated_at": "2023-08-26T15:39:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233284", - "id": 123233284, - "node_id": "RA_kwDOCa0F0M4HWGQE", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48256707, - "download_count": 9, - "created_at": "2023-08-26T15:39:03Z", - "updated_at": "2023-08-26T15:39:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233285", - "id": 123233285, - "node_id": "RA_kwDOCa0F0M4HWGQF", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2023-08-26T15:39:04Z", - "updated_at": "2023-08-26T15:39:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233286", - "id": 123233286, - "node_id": "RA_kwDOCa0F0M4HWGQG", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28674862, - "download_count": 6, - "created_at": "2023-08-26T15:39:04Z", - "updated_at": "2023-08-26T15:39:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233287", - "id": 123233287, - "node_id": "RA_kwDOCa0F0M4HWGQH", - "name": "cpython-3.11.5+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:04Z", - "updated_at": "2023-08-26T15:39:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233288", - "id": 123233288, - "node_id": "RA_kwDOCa0F0M4HWGQI", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32036840, - "download_count": 7, - "created_at": "2023-08-26T15:39:05Z", - "updated_at": "2023-08-26T15:39:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233289", - "id": 123233289, - "node_id": "RA_kwDOCa0F0M4HWGQJ", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2023-08-26T15:39:05Z", - "updated_at": "2023-08-26T15:39:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233290", - "id": 123233290, - "node_id": "RA_kwDOCa0F0M4HWGQK", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28594336, - "download_count": 3299, - "created_at": "2023-08-26T15:39:05Z", - "updated_at": "2023-08-26T15:39:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233291", - "id": 123233291, - "node_id": "RA_kwDOCa0F0M4HWGQL", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:39:05Z", - "updated_at": "2023-08-26T15:39:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233292", - "id": 123233292, - "node_id": "RA_kwDOCa0F0M4HWGQM", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 51120656, - "download_count": 6, - "created_at": "2023-08-26T15:39:06Z", - "updated_at": "2023-08-26T15:39:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233293", - "id": 123233293, - "node_id": "RA_kwDOCa0F0M4HWGQN", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:07Z", - "updated_at": "2023-08-26T15:39:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233294", - "id": 123233294, - "node_id": "RA_kwDOCa0F0M4HWGQO", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 53864871, - "download_count": 460, - "created_at": "2023-08-26T15:39:07Z", - "updated_at": "2023-08-26T15:39:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233296", - "id": 123233296, - "node_id": "RA_kwDOCa0F0M4HWGQQ", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 30, - "created_at": "2023-08-26T15:39:07Z", - "updated_at": "2023-08-26T15:39:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233295", - "id": 123233295, - "node_id": "RA_kwDOCa0F0M4HWGQP", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30267930, - "download_count": 8, - "created_at": "2023-08-26T15:39:07Z", - "updated_at": "2023-08-26T15:39:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233298", - "id": 123233298, - "node_id": "RA_kwDOCa0F0M4HWGQS", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:39:07Z", - "updated_at": "2023-08-26T15:39:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233299", - "id": 123233299, - "node_id": "RA_kwDOCa0F0M4HWGQT", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30314542, - "download_count": 6, - "created_at": "2023-08-26T15:39:08Z", - "updated_at": "2023-08-26T15:39:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233300", - "id": 123233300, - "node_id": "RA_kwDOCa0F0M4HWGQU", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:08Z", - "updated_at": "2023-08-26T15:39:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233301", - "id": 123233301, - "node_id": "RA_kwDOCa0F0M4HWGQV", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27166067, - "download_count": 154, - "created_at": "2023-08-26T15:39:08Z", - "updated_at": "2023-08-26T15:39:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233302", - "id": 123233302, - "node_id": "RA_kwDOCa0F0M4HWGQW", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:08Z", - "updated_at": "2023-08-26T15:39:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233303", - "id": 123233303, - "node_id": "RA_kwDOCa0F0M4HWGQX", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48983609, - "download_count": 13, - "created_at": "2023-08-26T15:39:09Z", - "updated_at": "2023-08-26T15:39:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233304", - "id": 123233304, - "node_id": "RA_kwDOCa0F0M4HWGQY", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 19, - "created_at": "2023-08-26T15:39:09Z", - "updated_at": "2023-08-26T15:39:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233305", - "id": 123233305, - "node_id": "RA_kwDOCa0F0M4HWGQZ", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28756555, - "download_count": 6, - "created_at": "2023-08-26T15:39:09Z", - "updated_at": "2023-08-26T15:39:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233306", - "id": 123233306, - "node_id": "RA_kwDOCa0F0M4HWGQa", - "name": "cpython-3.11.5+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:09Z", - "updated_at": "2023-08-26T15:39:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233307", - "id": 123233307, - "node_id": "RA_kwDOCa0F0M4HWGQb", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32019130, - "download_count": 7, - "created_at": "2023-08-26T15:39:10Z", - "updated_at": "2023-08-26T15:39:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233308", - "id": 123233308, - "node_id": "RA_kwDOCa0F0M4HWGQc", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2023-08-26T15:39:10Z", - "updated_at": "2023-08-26T15:39:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233309", - "id": 123233309, - "node_id": "RA_kwDOCa0F0M4HWGQd", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27789640, - "download_count": 13, - "created_at": "2023-08-26T15:39:10Z", - "updated_at": "2023-08-26T15:39:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233310", - "id": 123233310, - "node_id": "RA_kwDOCa0F0M4HWGQe", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:10Z", - "updated_at": "2023-08-26T15:39:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233311", - "id": 123233311, - "node_id": "RA_kwDOCa0F0M4HWGQf", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 51139643, - "download_count": 14, - "created_at": "2023-08-26T15:39:11Z", - "updated_at": "2023-08-26T15:39:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233312", - "id": 123233312, - "node_id": "RA_kwDOCa0F0M4HWGQg", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:11Z", - "updated_at": "2023-08-26T15:39:11Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233313", - "id": 123233313, - "node_id": "RA_kwDOCa0F0M4HWGQh", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 29571598, - "download_count": 7, - "created_at": "2023-08-26T15:39:11Z", - "updated_at": "2023-08-26T15:39:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233314", - "id": 123233314, - "node_id": "RA_kwDOCa0F0M4HWGQi", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:11Z", - "updated_at": "2023-08-26T15:39:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233315", - "id": 123233315, - "node_id": "RA_kwDOCa0F0M4HWGQj", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30272096, - "download_count": 6, - "created_at": "2023-08-26T15:39:12Z", - "updated_at": "2023-08-26T15:39:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233316", - "id": 123233316, - "node_id": "RA_kwDOCa0F0M4HWGQk", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:12Z", - "updated_at": "2023-08-26T15:39:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233318", - "id": 123233318, - "node_id": "RA_kwDOCa0F0M4HWGQm", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27191330, - "download_count": 7, - "created_at": "2023-08-26T15:39:12Z", - "updated_at": "2023-08-26T15:39:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233319", - "id": 123233319, - "node_id": "RA_kwDOCa0F0M4HWGQn", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:12Z", - "updated_at": "2023-08-26T15:39:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233320", - "id": 123233320, - "node_id": "RA_kwDOCa0F0M4HWGQo", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 48995526, - "download_count": 14, - "created_at": "2023-08-26T15:39:13Z", - "updated_at": "2023-08-26T15:39:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233322", - "id": 123233322, - "node_id": "RA_kwDOCa0F0M4HWGQq", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 18, - "created_at": "2023-08-26T15:39:13Z", - "updated_at": "2023-08-26T15:39:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233321", - "id": 123233321, - "node_id": "RA_kwDOCa0F0M4HWGQp", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28782434, - "download_count": 6, - "created_at": "2023-08-26T15:39:13Z", - "updated_at": "2023-08-26T15:39:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233323", - "id": 123233323, - "node_id": "RA_kwDOCa0F0M4HWGQr", - "name": "cpython-3.11.5+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:13Z", - "updated_at": "2023-08-26T15:39:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233324", - "id": 123233324, - "node_id": "RA_kwDOCa0F0M4HWGQs", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23028925, - "download_count": 6, - "created_at": "2023-08-26T15:39:14Z", - "updated_at": "2023-08-26T15:39:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233325", - "id": 123233325, - "node_id": "RA_kwDOCa0F0M4HWGQt", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:14Z", - "updated_at": "2023-08-26T15:39:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233326", - "id": 123233326, - "node_id": "RA_kwDOCa0F0M4HWGQu", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 19247729, - "download_count": 80, - "created_at": "2023-08-26T15:39:14Z", - "updated_at": "2023-08-26T15:39:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233327", - "id": 123233327, - "node_id": "RA_kwDOCa0F0M4HWGQv", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 42, - "created_at": "2023-08-26T15:39:14Z", - "updated_at": "2023-08-26T15:39:14Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233328", - "id": 123233328, - "node_id": "RA_kwDOCa0F0M4HWGQw", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31462831, - "download_count": 6, - "created_at": "2023-08-26T15:39:15Z", - "updated_at": "2023-08-26T15:39:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233329", - "id": 123233329, - "node_id": "RA_kwDOCa0F0M4HWGQx", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:15Z", - "updated_at": "2023-08-26T15:39:15Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233330", - "id": 123233330, - "node_id": "RA_kwDOCa0F0M4HWGQy", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32854862, - "download_count": 164, - "created_at": "2023-08-26T15:39:15Z", - "updated_at": "2023-08-26T15:39:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233331", - "id": 123233331, - "node_id": "RA_kwDOCa0F0M4HWGQz", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 103, - "created_at": "2023-08-26T15:39:15Z", - "updated_at": "2023-08-26T15:39:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233332", - "id": 123233332, - "node_id": "RA_kwDOCa0F0M4HWGQ0", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25003858, - "download_count": 6, - "created_at": "2023-08-26T15:39:15Z", - "updated_at": "2023-08-26T15:39:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233333", - "id": 123233333, - "node_id": "RA_kwDOCa0F0M4HWGQ1", - "name": "cpython-3.8.17+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:16Z", - "updated_at": "2023-08-26T15:39:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233334", - "id": 123233334, - "node_id": "RA_kwDOCa0F0M4HWGQ2", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31683977, - "download_count": 14, - "created_at": "2023-08-26T15:39:16Z", - "updated_at": "2023-08-26T15:39:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233338", - "id": 123233338, - "node_id": "RA_kwDOCa0F0M4HWGQ6", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:39:16Z", - "updated_at": "2023-08-26T15:39:16Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233339", - "id": 123233339, - "node_id": "RA_kwDOCa0F0M4HWGQ7", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25883841, - "download_count": 13, - "created_at": "2023-08-26T15:39:16Z", - "updated_at": "2023-08-26T15:39:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233340", - "id": 123233340, - "node_id": "RA_kwDOCa0F0M4HWGQ8", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2023-08-26T15:39:17Z", - "updated_at": "2023-08-26T15:39:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233343", - "id": 123233343, - "node_id": "RA_kwDOCa0F0M4HWGQ_", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 98710217, - "download_count": 90, - "created_at": "2023-08-26T15:39:17Z", - "updated_at": "2023-08-26T15:39:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233342", - "id": 123233342, - "node_id": "RA_kwDOCa0F0M4HWGQ-", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 74, - "created_at": "2023-08-26T15:39:17Z", - "updated_at": "2023-08-26T15:39:17Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233344", - "id": 123233344, - "node_id": "RA_kwDOCa0F0M4HWGRA", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32898070, - "download_count": 6, - "created_at": "2023-08-26T15:39:17Z", - "updated_at": "2023-08-26T15:39:19Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233346", - "id": 123233346, - "node_id": "RA_kwDOCa0F0M4HWGRC", - "name": "cpython-3.8.17+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:39:17Z", - "updated_at": "2023-08-26T15:39:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233347", - "id": 123233347, - "node_id": "RA_kwDOCa0F0M4HWGRD", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37711059, - "download_count": 47, - "created_at": "2023-08-26T15:39:18Z", - "updated_at": "2023-08-26T15:39:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233348", - "id": 123233348, - "node_id": "RA_kwDOCa0F0M4HWGRE", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:18Z", - "updated_at": "2023-08-26T15:39:18Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233349", - "id": 123233349, - "node_id": "RA_kwDOCa0F0M4HWGRF", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34949306, - "download_count": 18, - "created_at": "2023-08-26T15:39:18Z", - "updated_at": "2023-08-26T15:39:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233354", - "id": 123233354, - "node_id": "RA_kwDOCa0F0M4HWGRK", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 101, - "created_at": "2023-08-26T15:39:20Z", - "updated_at": "2023-08-26T15:39:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233355", - "id": 123233355, - "node_id": "RA_kwDOCa0F0M4HWGRL", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 42599585, - "download_count": 6, - "created_at": "2023-08-26T15:39:20Z", - "updated_at": "2023-08-26T15:39:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233356", - "id": 123233356, - "node_id": "RA_kwDOCa0F0M4HWGRM", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:20Z", - "updated_at": "2023-08-26T15:39:20Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233360", - "id": 123233360, - "node_id": "RA_kwDOCa0F0M4HWGRQ", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35401539, - "download_count": 6, - "created_at": "2023-08-26T15:39:20Z", - "updated_at": "2023-08-26T15:39:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233361", - "id": 123233361, - "node_id": "RA_kwDOCa0F0M4HWGRR", - "name": "cpython-3.8.17+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:20Z", - "updated_at": "2023-08-26T15:39:21Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233362", - "id": 123233362, - "node_id": "RA_kwDOCa0F0M4HWGRS", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26707532, - "download_count": 19, - "created_at": "2023-08-26T15:39:21Z", - "updated_at": "2023-08-26T15:39:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233365", - "id": 123233365, - "node_id": "RA_kwDOCa0F0M4HWGRV", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:39:22Z", - "updated_at": "2023-08-26T15:39:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233366", - "id": 123233366, - "node_id": "RA_kwDOCa0F0M4HWGRW", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27460311, - "download_count": 16, - "created_at": "2023-08-26T15:39:22Z", - "updated_at": "2023-08-26T15:39:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233367", - "id": 123233367, - "node_id": "RA_kwDOCa0F0M4HWGRX", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:22Z", - "updated_at": "2023-08-26T15:39:22Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233368", - "id": 123233368, - "node_id": "RA_kwDOCa0F0M4HWGRY", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39281508, - "download_count": 6, - "created_at": "2023-08-26T15:39:22Z", - "updated_at": "2023-08-26T15:39:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233369", - "id": 123233369, - "node_id": "RA_kwDOCa0F0M4HWGRZ", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 15, - "created_at": "2023-08-26T15:39:22Z", - "updated_at": "2023-08-26T15:39:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233370", - "id": 123233370, - "node_id": "RA_kwDOCa0F0M4HWGRa", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40694135, - "download_count": 17, - "created_at": "2023-08-26T15:39:23Z", - "updated_at": "2023-08-26T15:39:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233371", - "id": 123233371, - "node_id": "RA_kwDOCa0F0M4HWGRb", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 87, - "created_at": "2023-08-26T15:39:23Z", - "updated_at": "2023-08-26T15:39:23Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233372", - "id": 123233372, - "node_id": "RA_kwDOCa0F0M4HWGRc", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28730640, - "download_count": 6, - "created_at": "2023-08-26T15:39:23Z", - "updated_at": "2023-08-26T15:39:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233376", - "id": 123233376, - "node_id": "RA_kwDOCa0F0M4HWGRg", - "name": "cpython-3.8.17+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:24Z", - "updated_at": "2023-08-26T15:39:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233377", - "id": 123233377, - "node_id": "RA_kwDOCa0F0M4HWGRh", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23042679, - "download_count": 7, - "created_at": "2023-08-26T15:39:24Z", - "updated_at": "2023-08-26T15:39:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233378", - "id": 123233378, - "node_id": "RA_kwDOCa0F0M4HWGRi", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:24Z", - "updated_at": "2023-08-26T15:39:24Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233379", - "id": 123233379, - "node_id": "RA_kwDOCa0F0M4HWGRj", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 19505723, - "download_count": 3196, - "created_at": "2023-08-26T15:39:25Z", - "updated_at": "2023-08-26T15:39:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233380", - "id": 123233380, - "node_id": "RA_kwDOCa0F0M4HWGRk", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 42, - "created_at": "2023-08-26T15:39:25Z", - "updated_at": "2023-08-26T15:39:25Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233381", - "id": 123233381, - "node_id": "RA_kwDOCa0F0M4HWGRl", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31428843, - "download_count": 6, - "created_at": "2023-08-26T15:39:25Z", - "updated_at": "2023-08-26T15:39:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233382", - "id": 123233382, - "node_id": "RA_kwDOCa0F0M4HWGRm", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:25Z", - "updated_at": "2023-08-26T15:39:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233383", - "id": 123233383, - "node_id": "RA_kwDOCa0F0M4HWGRn", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32670013, - "download_count": 1010, - "created_at": "2023-08-26T15:39:26Z", - "updated_at": "2023-08-26T15:39:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233384", - "id": 123233384, - "node_id": "RA_kwDOCa0F0M4HWGRo", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 102, - "created_at": "2023-08-26T15:39:26Z", - "updated_at": "2023-08-26T15:39:26Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233385", - "id": 123233385, - "node_id": "RA_kwDOCa0F0M4HWGRp", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24513335, - "download_count": 6, - "created_at": "2023-08-26T15:39:26Z", - "updated_at": "2023-08-26T15:39:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233388", - "id": 123233388, - "node_id": "RA_kwDOCa0F0M4HWGRs", - "name": "cpython-3.8.17+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:27Z", - "updated_at": "2023-08-26T15:39:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233386", - "id": 123233386, - "node_id": "RA_kwDOCa0F0M4HWGRq", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38708990, - "download_count": 4932, - "created_at": "2023-08-26T15:39:27Z", - "updated_at": "2023-08-26T15:39:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233387", - "id": 123233387, - "node_id": "RA_kwDOCa0F0M4HWGRr", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 42, - "created_at": "2023-08-26T15:39:27Z", - "updated_at": "2023-08-26T15:39:27Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233389", - "id": 123233389, - "node_id": "RA_kwDOCa0F0M4HWGRt", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35657833, - "download_count": 1068, - "created_at": "2023-08-26T15:39:27Z", - "updated_at": "2023-08-26T15:39:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233390", - "id": 123233390, - "node_id": "RA_kwDOCa0F0M4HWGRu", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 100, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233391", - "id": 123233391, - "node_id": "RA_kwDOCa0F0M4HWGRv", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 44340648, - "download_count": 9, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233392", - "id": 123233392, - "node_id": "RA_kwDOCa0F0M4HWGRw", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233393", - "id": 123233393, - "node_id": "RA_kwDOCa0F0M4HWGRx", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38845708, - "download_count": 7, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233394", - "id": 123233394, - "node_id": "RA_kwDOCa0F0M4HWGRy", - "name": "cpython-3.8.17+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:28Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233395", - "id": 123233395, - "node_id": "RA_kwDOCa0F0M4HWGRz", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26310383, - "download_count": 15, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233396", - "id": 123233396, - "node_id": "RA_kwDOCa0F0M4HWGR0", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:39:28Z", - "updated_at": "2023-08-26T15:39:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233397", - "id": 123233397, - "node_id": "RA_kwDOCa0F0M4HWGR1", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27685259, - "download_count": 7637, - "created_at": "2023-08-26T15:39:29Z", - "updated_at": "2023-08-26T15:39:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233398", - "id": 123233398, - "node_id": "RA_kwDOCa0F0M4HWGR2", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 43, - "created_at": "2023-08-26T15:39:29Z", - "updated_at": "2023-08-26T15:39:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233399", - "id": 123233399, - "node_id": "RA_kwDOCa0F0M4HWGR3", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39364638, - "download_count": 9, - "created_at": "2023-08-26T15:39:29Z", - "updated_at": "2023-08-26T15:39:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233400", - "id": 123233400, - "node_id": "RA_kwDOCa0F0M4HWGR4", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:29Z", - "updated_at": "2023-08-26T15:39:29Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233401", - "id": 123233401, - "node_id": "RA_kwDOCa0F0M4HWGR5", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40911080, - "download_count": 2561, - "created_at": "2023-08-26T15:39:30Z", - "updated_at": "2023-08-26T15:39:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233402", - "id": 123233402, - "node_id": "RA_kwDOCa0F0M4HWGR6", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 87, - "created_at": "2023-08-26T15:39:30Z", - "updated_at": "2023-08-26T15:39:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233403", - "id": 123233403, - "node_id": "RA_kwDOCa0F0M4HWGR7", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 28850489, - "download_count": 284, - "created_at": "2023-08-26T15:39:30Z", - "updated_at": "2023-08-26T15:39:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233404", - "id": 123233404, - "node_id": "RA_kwDOCa0F0M4HWGR8", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 26, - "created_at": "2023-08-26T15:39:30Z", - "updated_at": "2023-08-26T15:39:30Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233405", - "id": 123233405, - "node_id": "RA_kwDOCa0F0M4HWGR9", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25558019, - "download_count": 6, - "created_at": "2023-08-26T15:39:30Z", - "updated_at": "2023-08-26T15:39:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233406", - "id": 123233406, - "node_id": "RA_kwDOCa0F0M4HWGR-", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:31Z", - "updated_at": "2023-08-26T15:39:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233407", - "id": 123233407, - "node_id": "RA_kwDOCa0F0M4HWGR_", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26025814, - "download_count": 133, - "created_at": "2023-08-26T15:39:31Z", - "updated_at": "2023-08-26T15:39:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233408", - "id": 123233408, - "node_id": "RA_kwDOCa0F0M4HWGSA", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:31Z", - "updated_at": "2023-08-26T15:39:31Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233409", - "id": 123233409, - "node_id": "RA_kwDOCa0F0M4HWGSB", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37973549, - "download_count": 27, - "created_at": "2023-08-26T15:39:32Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233410", - "id": 123233410, - "node_id": "RA_kwDOCa0F0M4HWGSC", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 46, - "created_at": "2023-08-26T15:39:32Z", - "updated_at": "2023-08-26T15:39:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233411", - "id": 123233411, - "node_id": "RA_kwDOCa0F0M4HWGSD", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27499101, - "download_count": 9, - "created_at": "2023-08-26T15:39:32Z", - "updated_at": "2023-08-26T15:39:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233412", - "id": 123233412, - "node_id": "RA_kwDOCa0F0M4HWGSE", - "name": "cpython-3.8.17+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:32Z", - "updated_at": "2023-08-26T15:39:32Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233413", - "id": 123233413, - "node_id": "RA_kwDOCa0F0M4HWGSF", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 21591005, - "download_count": 6, - "created_at": "2023-08-26T15:39:33Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233414", - "id": 123233414, - "node_id": "RA_kwDOCa0F0M4HWGSG", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:33Z", - "updated_at": "2023-08-26T15:39:33Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233415", - "id": 123233415, - "node_id": "RA_kwDOCa0F0M4HWGSH", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 16320623, - "download_count": 308, - "created_at": "2023-08-26T15:39:33Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233417", - "id": 123233417, - "node_id": "RA_kwDOCa0F0M4HWGSJ", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:33Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233418", - "id": 123233418, - "node_id": "RA_kwDOCa0F0M4HWGSK", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30486854, - "download_count": 6, - "created_at": "2023-08-26T15:39:33Z", - "updated_at": "2023-08-26T15:39:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233420", - "id": 123233420, - "node_id": "RA_kwDOCa0F0M4HWGSM", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:34Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233421", - "id": 123233421, - "node_id": "RA_kwDOCa0F0M4HWGSN", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31911436, - "download_count": 71, - "created_at": "2023-08-26T15:39:34Z", - "updated_at": "2023-08-26T15:39:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233422", - "id": 123233422, - "node_id": "RA_kwDOCa0F0M4HWGSO", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 41, - "created_at": "2023-08-26T15:39:34Z", - "updated_at": "2023-08-26T15:39:34Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233423", - "id": 123233423, - "node_id": "RA_kwDOCa0F0M4HWGSP", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23496071, - "download_count": 6, - "created_at": "2023-08-26T15:39:34Z", - "updated_at": "2023-08-26T15:39:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233424", - "id": 123233424, - "node_id": "RA_kwDOCa0F0M4HWGSQ", - "name": "cpython-3.9.18+20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:34Z", - "updated_at": "2023-08-26T15:39:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233426", - "id": 123233426, - "node_id": "RA_kwDOCa0F0M4HWGSS", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31288175, - "download_count": 6, - "created_at": "2023-08-26T15:39:35Z", - "updated_at": "2023-08-26T15:39:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233427", - "id": 123233427, - "node_id": "RA_kwDOCa0F0M4HWGST", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:35Z", - "updated_at": "2023-08-26T15:39:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233428", - "id": 123233428, - "node_id": "RA_kwDOCa0F0M4HWGSU", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23258597, - "download_count": 640, - "created_at": "2023-08-26T15:39:35Z", - "updated_at": "2023-08-26T15:39:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233429", - "id": 123233429, - "node_id": "RA_kwDOCa0F0M4HWGSV", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:35Z", - "updated_at": "2023-08-26T15:39:35Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233430", - "id": 123233430, - "node_id": "RA_kwDOCa0F0M4HWGSW", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 101548312, - "download_count": 11, - "created_at": "2023-08-26T15:39:35Z", - "updated_at": "2023-08-26T15:39:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233431", - "id": 123233431, - "node_id": "RA_kwDOCa0F0M4HWGSX", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 22, - "created_at": "2023-08-26T15:39:36Z", - "updated_at": "2023-08-26T15:39:36Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233432", - "id": 123233432, - "node_id": "RA_kwDOCa0F0M4HWGSY", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31464420, - "download_count": 6, - "created_at": "2023-08-26T15:39:36Z", - "updated_at": "2023-08-26T15:39:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233435", - "id": 123233435, - "node_id": "RA_kwDOCa0F0M4HWGSb", - "name": "cpython-3.9.18+20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:37Z", - "updated_at": "2023-08-26T15:39:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233433", - "id": 123233433, - "node_id": "RA_kwDOCa0F0M4HWGSZ", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 36750875, - "download_count": 10, - "created_at": "2023-08-26T15:39:36Z", - "updated_at": "2023-08-26T15:39:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233434", - "id": 123233434, - "node_id": "RA_kwDOCa0F0M4HWGSa", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:37Z", - "updated_at": "2023-08-26T15:39:37Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233436", - "id": 123233436, - "node_id": "RA_kwDOCa0F0M4HWGSc", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 34533570, - "download_count": 8, - "created_at": "2023-08-26T15:39:38Z", - "updated_at": "2023-08-26T15:39:39Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233437", - "id": 123233437, - "node_id": "RA_kwDOCa0F0M4HWGSd", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 31, - "created_at": "2023-08-26T15:39:38Z", - "updated_at": "2023-08-26T15:39:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233438", - "id": 123233438, - "node_id": "RA_kwDOCa0F0M4HWGSe", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 41713056, - "download_count": 6, - "created_at": "2023-08-26T15:39:38Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233439", - "id": 123233439, - "node_id": "RA_kwDOCa0F0M4HWGSf", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:38Z", - "updated_at": "2023-08-26T15:39:38Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233440", - "id": 123233440, - "node_id": "RA_kwDOCa0F0M4HWGSg", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35319306, - "download_count": 6, - "created_at": "2023-08-26T15:39:39Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233442", - "id": 123233442, - "node_id": "RA_kwDOCa0F0M4HWGSi", - "name": "cpython-3.9.18+20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:39Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233443", - "id": 123233443, - "node_id": "RA_kwDOCa0F0M4HWGSj", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25287799, - "download_count": 18, - "created_at": "2023-08-26T15:39:39Z", - "updated_at": "2023-08-26T15:39:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233446", - "id": 123233446, - "node_id": "RA_kwDOCa0F0M4HWGSm", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233447", - "id": 123233447, - "node_id": "RA_kwDOCa0F0M4HWGSn", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25264036, - "download_count": 14, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233448", - "id": 123233448, - "node_id": "RA_kwDOCa0F0M4HWGSo", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233451", - "id": 123233451, - "node_id": "RA_kwDOCa0F0M4HWGSr", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38958653, - "download_count": 6, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233450", - "id": 123233450, - "node_id": "RA_kwDOCa0F0M4HWGSq", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:40Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233452", - "id": 123233452, - "node_id": "RA_kwDOCa0F0M4HWGSs", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40382992, - "download_count": 9, - "created_at": "2023-08-26T15:39:40Z", - "updated_at": "2023-08-26T15:39:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233453", - "id": 123233453, - "node_id": "RA_kwDOCa0F0M4HWGSt", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 88, - "created_at": "2023-08-26T15:39:41Z", - "updated_at": "2023-08-26T15:39:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233454", - "id": 123233454, - "node_id": "RA_kwDOCa0F0M4HWGSu", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27293493, - "download_count": 8, - "created_at": "2023-08-26T15:39:41Z", - "updated_at": "2023-08-26T15:39:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233456", - "id": 123233456, - "node_id": "RA_kwDOCa0F0M4HWGSw", - "name": "cpython-3.9.18+20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:41Z", - "updated_at": "2023-08-26T15:39:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233455", - "id": 123233455, - "node_id": "RA_kwDOCa0F0M4HWGSv", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32324377, - "download_count": 7, - "created_at": "2023-08-26T15:39:41Z", - "updated_at": "2023-08-26T15:39:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233457", - "id": 123233457, - "node_id": "RA_kwDOCa0F0M4HWGSx", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:41Z", - "updated_at": "2023-08-26T15:39:41Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233458", - "id": 123233458, - "node_id": "RA_kwDOCa0F0M4HWGSy", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24046198, - "download_count": 8, - "created_at": "2023-08-26T15:39:42Z", - "updated_at": "2023-08-26T15:39:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233459", - "id": 123233459, - "node_id": "RA_kwDOCa0F0M4HWGSz", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:42Z", - "updated_at": "2023-08-26T15:39:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233460", - "id": 123233460, - "node_id": "RA_kwDOCa0F0M4HWGS0", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 108895882, - "download_count": 6, - "created_at": "2023-08-26T15:39:42Z", - "updated_at": "2023-08-26T15:39:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233461", - "id": 123233461, - "node_id": "RA_kwDOCa0F0M4HWGS1", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:42Z", - "updated_at": "2023-08-26T15:39:42Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233462", - "id": 123233462, - "node_id": "RA_kwDOCa0F0M4HWGS2", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 32459671, - "download_count": 6, - "created_at": "2023-08-26T15:39:42Z", - "updated_at": "2023-08-26T15:39:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233463", - "id": 123233463, - "node_id": "RA_kwDOCa0F0M4HWGS3", - "name": "cpython-3.9.18+20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:43Z", - "updated_at": "2023-08-26T15:39:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233464", - "id": 123233464, - "node_id": "RA_kwDOCa0F0M4HWGS4", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33171363, - "download_count": 6, - "created_at": "2023-08-26T15:39:43Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233465", - "id": 123233465, - "node_id": "RA_kwDOCa0F0M4HWGS5", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:43Z", - "updated_at": "2023-08-26T15:39:43Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233467", - "id": 123233467, - "node_id": "RA_kwDOCa0F0M4HWGS7", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24537024, - "download_count": 8, - "created_at": "2023-08-26T15:39:43Z", - "updated_at": "2023-08-26T15:39:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233468", - "id": 123233468, - "node_id": "RA_kwDOCa0F0M4HWGS8", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:44Z", - "updated_at": "2023-08-26T15:39:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233469", - "id": 123233469, - "node_id": "RA_kwDOCa0F0M4HWGS9", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 118088452, - "download_count": 6, - "created_at": "2023-08-26T15:39:44Z", - "updated_at": "2023-08-26T15:39:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233470", - "id": 123233470, - "node_id": "RA_kwDOCa0F0M4HWGS-", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:44Z", - "updated_at": "2023-08-26T15:39:44Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233471", - "id": 123233471, - "node_id": "RA_kwDOCa0F0M4HWGS_", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33540026, - "download_count": 6, - "created_at": "2023-08-26T15:39:45Z", - "updated_at": "2023-08-26T15:39:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233472", - "id": 123233472, - "node_id": "RA_kwDOCa0F0M4HWGTA", - "name": "cpython-3.9.18+20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:45Z", - "updated_at": "2023-08-26T15:39:45Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233474", - "id": 123233474, - "node_id": "RA_kwDOCa0F0M4HWGTC", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 21594105, - "download_count": 6, - "created_at": "2023-08-26T15:39:45Z", - "updated_at": "2023-08-26T15:39:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233476", - "id": 123233476, - "node_id": "RA_kwDOCa0F0M4HWGTE", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:47Z", - "updated_at": "2023-08-26T15:39:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233477", - "id": 123233477, - "node_id": "RA_kwDOCa0F0M4HWGTF", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 16596001, - "download_count": 516, - "created_at": "2023-08-26T15:39:47Z", - "updated_at": "2023-08-26T15:39:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233478", - "id": 123233478, - "node_id": "RA_kwDOCa0F0M4HWGTG", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:47Z", - "updated_at": "2023-08-26T15:39:47Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233479", - "id": 123233479, - "node_id": "RA_kwDOCa0F0M4HWGTH", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 30469217, - "download_count": 6, - "created_at": "2023-08-26T15:39:48Z", - "updated_at": "2023-08-26T15:39:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233480", - "id": 123233480, - "node_id": "RA_kwDOCa0F0M4HWGTI", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:48Z", - "updated_at": "2023-08-26T15:39:48Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233481", - "id": 123233481, - "node_id": "RA_kwDOCa0F0M4HWGTJ", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 31697418, - "download_count": 69, - "created_at": "2023-08-26T15:39:48Z", - "updated_at": "2023-08-26T15:39:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233482", - "id": 123233482, - "node_id": "RA_kwDOCa0F0M4HWGTK", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 38, - "created_at": "2023-08-26T15:39:48Z", - "updated_at": "2023-08-26T15:39:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233483", - "id": 123233483, - "node_id": "RA_kwDOCa0F0M4HWGTL", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23003731, - "download_count": 6, - "created_at": "2023-08-26T15:39:49Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233484", - "id": 123233484, - "node_id": "RA_kwDOCa0F0M4HWGTM", - "name": "cpython-3.9.18+20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:49Z", - "updated_at": "2023-08-26T15:39:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233485", - "id": 123233485, - "node_id": "RA_kwDOCa0F0M4HWGTN", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37761715, - "download_count": 1724, - "created_at": "2023-08-26T15:39:49Z", - "updated_at": "2023-08-26T15:39:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233487", - "id": 123233487, - "node_id": "RA_kwDOCa0F0M4HWGTP", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:49Z", - "updated_at": "2023-08-26T15:39:49Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233489", - "id": 123233489, - "node_id": "RA_kwDOCa0F0M4HWGTR", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 35239163, - "download_count": 53, - "created_at": "2023-08-26T15:39:50Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233490", - "id": 123233490, - "node_id": "RA_kwDOCa0F0M4HWGTS", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 33, - "created_at": "2023-08-26T15:39:50Z", - "updated_at": "2023-08-26T15:39:50Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233491", - "id": 123233491, - "node_id": "RA_kwDOCa0F0M4HWGTT", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 43523839, - "download_count": 9, - "created_at": "2023-08-26T15:39:50Z", - "updated_at": "2023-08-26T15:39:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233492", - "id": 123233492, - "node_id": "RA_kwDOCa0F0M4HWGTU", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:50Z", - "updated_at": "2023-08-26T15:39:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233493", - "id": 123233493, - "node_id": "RA_kwDOCa0F0M4HWGTV", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38414936, - "download_count": 6, - "created_at": "2023-08-26T15:39:51Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233494", - "id": 123233494, - "node_id": "RA_kwDOCa0F0M4HWGTW", - "name": "cpython-3.9.18+20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:51Z", - "updated_at": "2023-08-26T15:39:51Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233495", - "id": 123233495, - "node_id": "RA_kwDOCa0F0M4HWGTX", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24834710, - "download_count": 7, - "created_at": "2023-08-26T15:39:52Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233496", - "id": 123233496, - "node_id": "RA_kwDOCa0F0M4HWGTY", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:52Z", - "updated_at": "2023-08-26T15:39:52Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233497", - "id": 123233497, - "node_id": "RA_kwDOCa0F0M4HWGTZ", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25387991, - "download_count": 21404, - "created_at": "2023-08-26T15:39:52Z", - "updated_at": "2023-08-26T15:39:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233498", - "id": 123233498, - "node_id": "RA_kwDOCa0F0M4HWGTa", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 16, - "created_at": "2023-08-26T15:39:53Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233499", - "id": 123233499, - "node_id": "RA_kwDOCa0F0M4HWGTb", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38908483, - "download_count": 6, - "created_at": "2023-08-26T15:39:53Z", - "updated_at": "2023-08-26T15:39:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233500", - "id": 123233500, - "node_id": "RA_kwDOCa0F0M4HWGTc", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:53Z", - "updated_at": "2023-08-26T15:39:53Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233501", - "id": 123233501, - "node_id": "RA_kwDOCa0F0M4HWGTd", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40472410, - "download_count": 937, - "created_at": "2023-08-26T15:39:53Z", - "updated_at": "2023-08-26T15:39:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233503", - "id": 123233503, - "node_id": "RA_kwDOCa0F0M4HWGTf", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 35, - "created_at": "2023-08-26T15:39:53Z", - "updated_at": "2023-08-26T15:39:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233504", - "id": 123233504, - "node_id": "RA_kwDOCa0F0M4HWGTg", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27383517, - "download_count": 8, - "created_at": "2023-08-26T15:39:54Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233505", - "id": 123233505, - "node_id": "RA_kwDOCa0F0M4HWGTh", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 25, - "created_at": "2023-08-26T15:39:54Z", - "updated_at": "2023-08-26T15:39:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233508", - "id": 123233508, - "node_id": "RA_kwDOCa0F0M4HWGTk", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24123813, - "download_count": 6, - "created_at": "2023-08-26T15:39:54Z", - "updated_at": "2023-08-26T15:39:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233509", - "id": 123233509, - "node_id": "RA_kwDOCa0F0M4HWGTl", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:54Z", - "updated_at": "2023-08-26T15:39:54Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233510", - "id": 123233510, - "node_id": "RA_kwDOCa0F0M4HWGTm", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23981192, - "download_count": 71, - "created_at": "2023-08-26T15:39:55Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233511", - "id": 123233511, - "node_id": "RA_kwDOCa0F0M4HWGTn", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:55Z", - "updated_at": "2023-08-26T15:39:55Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233513", - "id": 123233513, - "node_id": "RA_kwDOCa0F0M4HWGTp", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37792656, - "download_count": 7, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233514", - "id": 123233514, - "node_id": "RA_kwDOCa0F0M4HWGTq", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 17, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233516", - "id": 123233516, - "node_id": "RA_kwDOCa0F0M4HWGTs", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26190159, - "download_count": 7, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:40:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233519", - "id": 123233519, - "node_id": "RA_kwDOCa0F0M4HWGTv", - "name": "cpython-3.9.18+20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233518", - "id": 123233518, - "node_id": "RA_kwDOCa0F0M4HWGTu", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24780359, - "download_count": 6, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233521", - "id": 123233521, - "node_id": "RA_kwDOCa0F0M4HWGTx", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:56Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233522", - "id": 123233522, - "node_id": "RA_kwDOCa0F0M4HWGTy", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25258322, - "download_count": 280, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233523", - "id": 123233523, - "node_id": "RA_kwDOCa0F0M4HWGTz", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:39:56Z", - "updated_at": "2023-08-26T15:39:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233525", - "id": 123233525, - "node_id": "RA_kwDOCa0F0M4HWGT1", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 38828077, - "download_count": 9, - "created_at": "2023-08-26T15:39:57Z", - "updated_at": "2023-08-26T15:39:59Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233526", - "id": 123233526, - "node_id": "RA_kwDOCa0F0M4HWGT2", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 14, - "created_at": "2023-08-26T15:39:57Z", - "updated_at": "2023-08-26T15:39:57Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233528", - "id": 123233528, - "node_id": "RA_kwDOCa0F0M4HWGT4", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40410140, - "download_count": 8, - "created_at": "2023-08-26T15:39:57Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233529", - "id": 123233529, - "node_id": "RA_kwDOCa0F0M4HWGT5", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:39:58Z", - "updated_at": "2023-08-26T15:39:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233530", - "id": 123233530, - "node_id": "RA_kwDOCa0F0M4HWGT6", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27354595, - "download_count": 8, - "created_at": "2023-08-26T15:39:58Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233532", - "id": 123233532, - "node_id": "RA_kwDOCa0F0M4HWGT8", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:39:58Z", - "updated_at": "2023-08-26T15:39:58Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233534", - "id": 123233534, - "node_id": "RA_kwDOCa0F0M4HWGT-", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24122237, - "download_count": 6, - "created_at": "2023-08-26T15:39:58Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233535", - "id": 123233535, - "node_id": "RA_kwDOCa0F0M4HWGT_", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:39:59Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233536", - "id": 123233536, - "node_id": "RA_kwDOCa0F0M4HWGUA", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 23956884, - "download_count": 7, - "created_at": "2023-08-26T15:39:59Z", - "updated_at": "2023-08-26T15:40:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233538", - "id": 123233538, - "node_id": "RA_kwDOCa0F0M4HWGUC", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:00Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233539", - "id": 123233539, - "node_id": "RA_kwDOCa0F0M4HWGUD", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37742119, - "download_count": 6, - "created_at": "2023-08-26T15:40:00Z", - "updated_at": "2023-08-26T15:40:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233540", - "id": 123233540, - "node_id": "RA_kwDOCa0F0M4HWGUE", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:00Z", - "updated_at": "2023-08-26T15:40:00Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233541", - "id": 123233541, - "node_id": "RA_kwDOCa0F0M4HWGUF", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26174064, - "download_count": 6, - "created_at": "2023-08-26T15:40:00Z", - "updated_at": "2023-08-26T15:40:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233542", - "id": 123233542, - "node_id": "RA_kwDOCa0F0M4HWGUG", - "name": "cpython-3.9.18+20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:40:00Z", - "updated_at": "2023-08-26T15:40:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233543", - "id": 123233543, - "node_id": "RA_kwDOCa0F0M4HWGUH", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24808698, - "download_count": 6, - "created_at": "2023-08-26T15:40:01Z", - "updated_at": "2023-08-26T15:40:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233544", - "id": 123233544, - "node_id": "RA_kwDOCa0F0M4HWGUI", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:01Z", - "updated_at": "2023-08-26T15:40:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233546", - "id": 123233546, - "node_id": "RA_kwDOCa0F0M4HWGUK", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 25293761, - "download_count": 407, - "created_at": "2023-08-26T15:40:01Z", - "updated_at": "2023-08-26T15:40:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233547", - "id": 123233547, - "node_id": "RA_kwDOCa0F0M4HWGUL", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:40:01Z", - "updated_at": "2023-08-26T15:40:01Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233548", - "id": 123233548, - "node_id": "RA_kwDOCa0F0M4HWGUM", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39050535, - "download_count": 6, - "created_at": "2023-08-26T15:40:02Z", - "updated_at": "2023-08-26T15:40:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233549", - "id": 123233549, - "node_id": "RA_kwDOCa0F0M4HWGUN", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:40:02Z", - "updated_at": "2023-08-26T15:40:02Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233550", - "id": 123233550, - "node_id": "RA_kwDOCa0F0M4HWGUO", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 40477266, - "download_count": 17, - "created_at": "2023-08-26T15:40:02Z", - "updated_at": "2023-08-26T15:40:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233552", - "id": 123233552, - "node_id": "RA_kwDOCa0F0M4HWGUQ", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 21, - "created_at": "2023-08-26T15:40:03Z", - "updated_at": "2023-08-26T15:40:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233553", - "id": 123233553, - "node_id": "RA_kwDOCa0F0M4HWGUR", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 27384863, - "download_count": 6, - "created_at": "2023-08-26T15:40:03Z", - "updated_at": "2023-08-26T15:40:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233554", - "id": 123233554, - "node_id": "RA_kwDOCa0F0M4HWGUS", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 20, - "created_at": "2023-08-26T15:40:03Z", - "updated_at": "2023-08-26T15:40:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233555", - "id": 123233555, - "node_id": "RA_kwDOCa0F0M4HWGUT", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24157660, - "download_count": 6, - "created_at": "2023-08-26T15:40:03Z", - "updated_at": "2023-08-26T15:40:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233556", - "id": 123233556, - "node_id": "RA_kwDOCa0F0M4HWGUU", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:03Z", - "updated_at": "2023-08-26T15:40:03Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233557", - "id": 123233557, - "node_id": "RA_kwDOCa0F0M4HWGUV", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24049470, - "download_count": 76, - "created_at": "2023-08-26T15:40:04Z", - "updated_at": "2023-08-26T15:40:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233558", - "id": 123233558, - "node_id": "RA_kwDOCa0F0M4HWGUW", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:04Z", - "updated_at": "2023-08-26T15:40:04Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233560", - "id": 123233560, - "node_id": "RA_kwDOCa0F0M4HWGUY", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37967681, - "download_count": 7, - "created_at": "2023-08-26T15:40:04Z", - "updated_at": "2023-08-26T15:40:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233561", - "id": 123233561, - "node_id": "RA_kwDOCa0F0M4HWGUZ", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:40:04Z", - "updated_at": "2023-08-26T15:40:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233562", - "id": 123233562, - "node_id": "RA_kwDOCa0F0M4HWGUa", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26242518, - "download_count": 6, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233563", - "id": 123233563, - "node_id": "RA_kwDOCa0F0M4HWGUb", - "name": "cpython-3.9.18+20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233564", - "id": 123233564, - "node_id": "RA_kwDOCa0F0M4HWGUc", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24816044, - "download_count": 7, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233565", - "id": 123233565, - "node_id": "RA_kwDOCa0F0M4HWGUd", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233566", - "id": 123233566, - "node_id": "RA_kwDOCa0F0M4HWGUe", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24835228, - "download_count": 10, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:12Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233567", - "id": 123233567, - "node_id": "RA_kwDOCa0F0M4HWGUf", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:05Z", - "updated_at": "2023-08-26T15:40:05Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233570", - "id": 123233570, - "node_id": "RA_kwDOCa0F0M4HWGUi", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 39029853, - "download_count": 8, - "created_at": "2023-08-26T15:40:06Z", - "updated_at": "2023-08-26T15:40:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233572", - "id": 123233572, - "node_id": "RA_kwDOCa0F0M4HWGUk", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:06Z", - "updated_at": "2023-08-26T15:40:06Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233573", - "id": 123233573, - "node_id": "RA_kwDOCa0F0M4HWGUl", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26825380, - "download_count": 6, - "created_at": "2023-08-26T15:40:06Z", - "updated_at": "2023-08-26T15:40:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233574", - "id": 123233574, - "node_id": "RA_kwDOCa0F0M4HWGUm", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:06Z", - "updated_at": "2023-08-26T15:40:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233575", - "id": 123233575, - "node_id": "RA_kwDOCa0F0M4HWGUn", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24168299, - "download_count": 6, - "created_at": "2023-08-26T15:40:06Z", - "updated_at": "2023-08-26T15:40:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233576", - "id": 123233576, - "node_id": "RA_kwDOCa0F0M4HWGUo", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:07Z", - "updated_at": "2023-08-26T15:40:07Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233578", - "id": 123233578, - "node_id": "RA_kwDOCa0F0M4HWGUq", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 24053106, - "download_count": 6, - "created_at": "2023-08-26T15:40:07Z", - "updated_at": "2023-08-26T15:40:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233579", - "id": 123233579, - "node_id": "RA_kwDOCa0F0M4HWGUr", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:08Z", - "updated_at": "2023-08-26T15:40:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233580", - "id": 123233580, - "node_id": "RA_kwDOCa0F0M4HWGUs", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 37957589, - "download_count": 6, - "created_at": "2023-08-26T15:40:08Z", - "updated_at": "2023-08-26T15:40:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233582", - "id": 123233582, - "node_id": "RA_kwDOCa0F0M4HWGUu", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 12, - "created_at": "2023-08-26T15:40:08Z", - "updated_at": "2023-08-26T15:40:08Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233581", - "id": 123233581, - "node_id": "RA_kwDOCa0F0M4HWGUt", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 26246896, - "download_count": 10, - "created_at": "2023-08-26T15:40:08Z", - "updated_at": "2023-08-26T15:40:10Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233584", - "id": 123233584, - "node_id": "RA_kwDOCa0F0M4HWGUw", - "name": "cpython-3.9.18+20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 65, - "download_count": 13, - "created_at": "2023-08-26T15:40:09Z", - "updated_at": "2023-08-26T15:40:09Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst.sha256" }, { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/assets/123233591", - "id": 123233591, - "node_id": "RA_kwDOCa0F0M4HWGU3", - "name": "SHA256SUMS", - "label": "", - "uploader": { - "login": "indygreg", - "id": 342993, - "node_id": "MDQ6VXNlcjM0Mjk5Mw==", - "avatar_url": "https://avatars.githubusercontent.com/u/342993?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/indygreg", - "html_url": "https://github.com/indygreg", - "followers_url": "https://api.github.com/users/indygreg/followers", - "following_url": "https://api.github.com/users/indygreg/following{/other_user}", - "gists_url": "https://api.github.com/users/indygreg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/indygreg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/indygreg/subscriptions", - "organizations_url": "https://api.github.com/users/indygreg/orgs", - "repos_url": "https://api.github.com/users/indygreg/repos", - "events_url": "https://api.github.com/users/indygreg/events{/privacy}", - "received_events_url": "https://api.github.com/users/indygreg/received_events", - "type": "User", - "site_admin": false - }, - "content_type": "application/x-tar", - "state": "uploaded", - "size": 33196, - "download_count": 1955, - "created_at": "2023-08-26T15:40:13Z", - "updated_at": "2023-08-26T15:40:13Z", "browser_download_url": "https://github.com/indygreg/python-build-standalone/releases/download/20230826/SHA256SUMS" } - ], - "tarball_url": "https://api.github.com/repos/indygreg/python-build-standalone/tarball/20230826", - "zipball_url": "https://api.github.com/repos/indygreg/python-build-standalone/zipball/20230826", - "body": "* CPython 3.11.4 -> 3.11.5\r\n* CPython 3.10.12 -> 3.10.13\r\n* CPython 3.9.17 -> 3.9.18\r\n* CPython 3.8.16 -> 3.8.17\r\n* setuptools 68.0.0 -> 68.1.2\r\n* SQLite 3.42 -> 3.43\r\n* OpenSSL 1.1.1u -> 1.1.1v\r\n* binutils 2.40 -> 2.41", - "reactions": { - "url": "https://api.github.com/repos/indygreg/python-build-standalone/releases/118809599/reactions", - "total_count": 4, - "+1": 3, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 1, - "rocket": 0, - "eyes": 0 - } -} + ] +} \ No newline at end of file From 0b36eacbad2329d4b6fb5b3da96bd4cfac8146a7 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:09:41 +0530 Subject: [PATCH 06/15] Build 32bit binaries --- .github/workflows/build-and-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index fb28feb..65c1c34 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -64,6 +64,11 @@ jobs: target: aarch64-unknown-linux-musl, os: ubuntu-latest, } + - { + name: "Linux-x86", + target: i686-unknown-linux-gnu, + os: ubuntu-latest, + } - { name: "macOS-x86_64", target: x86_64-apple-darwin, @@ -79,6 +84,11 @@ jobs: target: x86_64-pc-windows-msvc, os: windows-latest, } + - { + name: "windows-x86", + target: i686-pc-windows-msvc, + os: windows-latest, + } env: # # These are some environment variables that configure the build so that the binary size is reduced. From 233ec52602cb2b2f593a106bbb9bccf813f84dc1 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:12:26 +0530 Subject: [PATCH 07/15] Run tests on x86 as well --- .github/workflows/test.yml | 54 +++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fcd6387..bbda7c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,12 +12,54 @@ jobs: strategy: matrix: include: - - { python-version: "3.8", tox-env: "py38", os: "ubuntu-latest" } - - { python-version: "3.9", tox-env: "py39", os: "ubuntu-latest" } - - { python-version: "3.10", tox-env: "py310", os: "ubuntu-latest" } - - { python-version: "3.11", tox-env: "py311", os: "ubuntu-latest" } - - { python-version: "3.12", tox-env: "py312", os: "ubuntu-latest" } - - { python-version: "3.12", tox-env: "py312", os: "windows-latest" } + - { + python-version: "3.8", + tox-env: "py38", + os: "ubuntu-latest", + arch: x64, + } + - { + python-version: "3.9", + tox-env: "py39", + os: "ubuntu-latest", + arch: x64, + } + - { + python-version: "3.10", + tox-env: "py310", + os: "ubuntu-latest", + arch: x64, + } + - { + python-version: "3.11", + tox-env: "py311", + os: "ubuntu-latest", + arch: x64, + } + - { + python-version: "3.12", + tox-env: "py312", + os: "ubuntu-latest", + arch: x64, + } + - { + python-version: "3.12", + tox-env: "py312", + os: "ubuntu-latest", + arch: x86, + } + - { + python-version: "3.12", + tox-env: "py312", + os: "windows-latest", + arch: x64, + } + - { + python-version: "3.12", + tox-env: "py312", + os: "windows-latest", + arch: x86, + } name: Python ${{ matrix.python-version }} tests (${{ matrix.os }}) steps: - uses: actions/checkout@v2 From a384d14fcb9c59634acdfa45d80e1b2937ce7ca0 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:31:41 +0530 Subject: [PATCH 08/15] port the python changes to rust --- yen-rs/src/github.rs | 11 +++++++++++ yen-rs/src/utils.rs | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/yen-rs/src/github.rs b/yen-rs/src/github.rs index fd97e35..bcff03e 100644 --- a/yen-rs/src/github.rs +++ b/yen-rs/src/github.rs @@ -85,7 +85,9 @@ pub enum MachineSuffix { LinuxAarch64, LinuxX64GlibC, LinuxX64Musl, + LinuxX86, WindowsX64, + WindowsX86, } impl MachineSuffix { @@ -99,7 +101,9 @@ impl MachineSuffix { "x86_64-unknown-linux-gnu-install_only.tar.gz".into(), ], Self::LinuxX64Musl => vec!["x86_64_v3-unknown-linux-musl-install_only.tar.gz".into()], + Self::LinuxX86 => vec!["i686-unknown-linux-gnu-install_only.tar.gz".into()], Self::WindowsX64 => vec!["x86_64-pc-windows-msvc-shared-install_only.tar.gz".into()], + Self::WindowsX86 => vec!["i686-pc-windows-msvc-install_only.tar.gz".into()], } } @@ -107,18 +111,25 @@ impl MachineSuffix { match detect_target()?.as_str() { "x86_64-unknown-linux-musl" => Ok(Self::LinuxX64Musl), "x86_64-unknown-linux-gnu" => Ok(Self::LinuxX64GlibC), + "i686-unknown-linux-gnu" => Ok(Self::LinuxX86), "aarch64-unknown-linux-gnu" => Ok(Self::LinuxAarch64), "aarch64-apple-darwin" => Ok(Self::DarwinArm64), "x86_64-apple-darwin" => Ok(Self::DarwinX64), "x86_64-pc-windows-msvc" => Ok(Self::WindowsX64), + "i686-pc-windows-msvc" => Ok(Self::WindowsX86), _ => miette::bail!("Unknown target!"), } } } const FALLBACK_RESPONSE_BYTES: &[u8] = include_bytes!("../../src/yen/fallback_release_data.json"); +#[cfg(all(target_os = "linux", target_arch = "i686"))] +const LINUX_I686_RESPONSE_BYTES: &[u8] = include_bytes!("../../src/yen/linux_i686_release.json"); async fn get_release_json() -> miette::Result { + #[cfg(all(target_os = "linux", target_arch = "i686"))] + return Ok(String::from_utf8_lossy(LINUX_I686_RESPONSE_BYTES).into_owned()); + let response = YEN_CLIENT .get(*GITHUB_API_URL) .send() diff --git a/yen-rs/src/utils.rs b/yen-rs/src/utils.rs index d5a4909..bb6153a 100644 --- a/yen-rs/src/utils.rs +++ b/yen-rs/src/utils.rs @@ -252,6 +252,9 @@ pub fn detect_target() -> miette::Result { #[cfg(target_arch = "aarch64")] return Ok("aarch64-unknown-linux-gnu".into()); + + #[cfg(target_arch = "i686")] + return Ok("i686-unknown-linux-gnu".into()); } else { #[cfg(target_arch = "x86_64")] return Ok("x86_64-unknown-linux-musl".into()); @@ -271,6 +274,9 @@ pub fn detect_target() -> miette::Result { { #[cfg(target_arch = "x86_64")] return Ok("x86_64-pc-windows-msvc".into()); + + #[cfg(target_arch = "i686")] + return Ok("i686-pc-windows-msvc".into()); } miette::bail!("{}-{} is not supported", consts::OS, consts::ARCH); From cef141f84b905d421abb2124f3d38d0bd220aa92 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:33:49 +0530 Subject: [PATCH 09/15] fix name conflict --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bbda7c3..3855043 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,7 +60,7 @@ jobs: os: "windows-latest", arch: x86, } - name: Python ${{ matrix.python-version }} tests (${{ matrix.os }}) + name: Python ${{ matrix.python-version }} tests (${{ matrix.os }} / ${{ matrix.arch }}) steps: - uses: actions/checkout@v2 - name: Setup python From 21b47381f37578a3671d85d1c57f024df5de6d9b Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:39:13 +0530 Subject: [PATCH 10/15] debug --- yen-rs/src/main.rs | 2 +- yen-rs/src/utils.rs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/yen-rs/src/main.rs b/yen-rs/src/main.rs index 758c51d..1d70648 100644 --- a/yen-rs/src/main.rs +++ b/yen-rs/src/main.rs @@ -21,7 +21,7 @@ lazy_static! { static ref GITHUB_API_URL: &'static str = "https://api.github.com/repos/indygreg/python-build-standalone/releases/latest"; static ref RE: Regex = Regex::new(r"cpython-(\d+\.\d+.\d+)").expect("Unable to create regex!"); - static ref MUSL: Regex = Regex::new(r"GNU|GLIBC|glibc").expect("Unable to create regex!"); + static ref GLIBC: Regex = Regex::new(r"GNU|GLIBC|glibc").expect("Unable to create regex!"); static ref YEN_BIN_PATH: PathBuf = { std::path::absolute(match std::env::var("YEN_BIN_PATH") { Ok(yen_packages_path) => PathBuf::from(yen_packages_path), diff --git a/yen-rs/src/utils.rs b/yen-rs/src/utils.rs index bb6153a..259f2be 100644 --- a/yen-rs/src/utils.rs +++ b/yen-rs/src/utils.rs @@ -21,7 +21,7 @@ use crate::{ }; #[cfg(target_os = "linux")] -use crate::MUSL; +use crate::GLIBC; #[cfg(target_os = "linux")] use std::io::Read; @@ -286,8 +286,9 @@ pub fn detect_target() -> miette::Result { pub fn is_glibc() -> miette::Result { let p = PathBuf::from("/usr/bin/ldd"); let content = read_to_string(p)?; + println!("{content}"); - if MUSL.is_match(&content) { + if GLIBC.is_match(&content) { Ok(true) } else { Ok(false) From f692530c57940b17da6d07b7be9edaa03a521eef Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:47:03 +0530 Subject: [PATCH 11/15] fix target arch --- yen-rs/src/github.rs | 4 ++-- yen-rs/src/utils.rs | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/yen-rs/src/github.rs b/yen-rs/src/github.rs index bcff03e..c5a8ff0 100644 --- a/yen-rs/src/github.rs +++ b/yen-rs/src/github.rs @@ -123,11 +123,11 @@ impl MachineSuffix { } const FALLBACK_RESPONSE_BYTES: &[u8] = include_bytes!("../../src/yen/fallback_release_data.json"); -#[cfg(all(target_os = "linux", target_arch = "i686"))] +#[cfg(all(target_os = "linux", target_arch = "x86"))] const LINUX_I686_RESPONSE_BYTES: &[u8] = include_bytes!("../../src/yen/linux_i686_release.json"); async fn get_release_json() -> miette::Result { - #[cfg(all(target_os = "linux", target_arch = "i686"))] + #[cfg(all(target_os = "linux", target_arch = "x86"))] return Ok(String::from_utf8_lossy(LINUX_I686_RESPONSE_BYTES).into_owned()); let response = YEN_CLIENT diff --git a/yen-rs/src/utils.rs b/yen-rs/src/utils.rs index 259f2be..507dd81 100644 --- a/yen-rs/src/utils.rs +++ b/yen-rs/src/utils.rs @@ -253,7 +253,7 @@ pub fn detect_target() -> miette::Result { #[cfg(target_arch = "aarch64")] return Ok("aarch64-unknown-linux-gnu".into()); - #[cfg(target_arch = "i686")] + #[cfg(target_arch = "x86")] return Ok("i686-unknown-linux-gnu".into()); } else { #[cfg(target_arch = "x86_64")] @@ -275,7 +275,7 @@ pub fn detect_target() -> miette::Result { #[cfg(target_arch = "x86_64")] return Ok("x86_64-pc-windows-msvc".into()); - #[cfg(target_arch = "i686")] + #[cfg(target_arch = "x86")] return Ok("i686-pc-windows-msvc".into()); } @@ -286,7 +286,6 @@ pub fn detect_target() -> miette::Result { pub fn is_glibc() -> miette::Result { let p = PathBuf::from("/usr/bin/ldd"); let content = read_to_string(p)?; - println!("{content}"); if GLIBC.is_match(&content) { Ok(true) From cf89143e8ed5a026002933473a3667a7571a8346 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:50:28 +0530 Subject: [PATCH 12/15] fix compilation on x86 --- yen-rs/src/github.rs | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/yen-rs/src/github.rs b/yen-rs/src/github.rs index c5a8ff0..383cae2 100644 --- a/yen-rs/src/github.rs +++ b/yen-rs/src/github.rs @@ -130,23 +130,26 @@ async fn get_release_json() -> miette::Result { #[cfg(all(target_os = "linux", target_arch = "x86"))] return Ok(String::from_utf8_lossy(LINUX_I686_RESPONSE_BYTES).into_owned()); - let response = YEN_CLIENT - .get(*GITHUB_API_URL) - .send() - .await - .into_diagnostic()?; - - // Check if the response status is successful - // Log the response body if the status is not successful - let status_code = response.status().as_u16(); - let success = response.status().is_success(); - let body = response.text().await.into_diagnostic()?; - if !success { - log::error!("Error response: {}\nStatus Code: {}", body, status_code); - miette::bail!("Failed to fetch fallback data"); - } + #[cfg(not(all(target_os = "linux", target_arch = "x86")))] + { + let response = YEN_CLIENT + .get(*GITHUB_API_URL) + .send() + .await + .into_diagnostic()?; + + // Check if the response status is successful + // Log the response body if the status is not successful + let status_code = response.status().as_u16(); + let success = response.status().is_success(); + let body = response.text().await.into_diagnostic()?; + if !success { + log::error!("Error response: {}\nStatus Code: {}", body, status_code); + miette::bail!("Failed to fetch fallback data"); + } - Ok(body) + Ok(body) + } } async fn get_latest_python_release() -> miette::Result> { From d3d238aac727a19ce2c219979c437130692180d5 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:53:59 +0530 Subject: [PATCH 13/15] move imports --- yen-rs/src/github.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/yen-rs/src/github.rs b/yen-rs/src/github.rs index 383cae2..55eea9f 100644 --- a/yen-rs/src/github.rs +++ b/yen-rs/src/github.rs @@ -3,7 +3,7 @@ use std::{collections::BTreeMap, fmt::Display, str::FromStr}; use miette::IntoDiagnostic; use serde::Deserialize; -use crate::{utils::detect_target, GITHUB_API_URL, RE, YEN_CLIENT}; +use crate::{utils::detect_target, RE}; #[derive(Clone, Debug, Deserialize)] pub struct GithubResp { @@ -132,6 +132,8 @@ async fn get_release_json() -> miette::Result { #[cfg(not(all(target_os = "linux", target_arch = "x86")))] { + use crate::{GITHUB_API_URL, YEN_CLIENT}; + let response = YEN_CLIENT .get(*GITHUB_API_URL) .send() From 1955e8197beece40748ba5df5b1dc1f5d9ccef08 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 04:58:23 +0530 Subject: [PATCH 14/15] fix failing test on x86 --- tests/yen_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/yen_test.py b/tests/yen_test.py index defb167..1a2efca 100644 --- a/tests/yen_test.py +++ b/tests/yen_test.py @@ -94,7 +94,6 @@ def run( def test_yen_list(yen_path: str) -> None: output = run([yen_path, "list"], combined_output=True) assert "Available Pythons:" - assert "\n3.12." in output assert "\n3.11." in output assert "\n3.10." in output assert "\n3.9." in output From 46dc4f5ea5043d3d4a851df624e686c624594081 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Sat, 29 Jun 2024 05:02:06 +0530 Subject: [PATCH 15/15] build musl binary, smaller --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 65c1c34..015371f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -66,7 +66,7 @@ jobs: } - { name: "Linux-x86", - target: i686-unknown-linux-gnu, + target: i686-unknown-linux-musl, os: ubuntu-latest, } - {