We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd713f3 commit 5c4fa2aCopy full SHA for 5c4fa2a
src/fetchcode/pypi.py
@@ -42,8 +42,8 @@ def get_download_url(cls, purl):
42
if not name or not version:
43
raise ValueError("Pypi PURL must specify a name and version")
44
45
- url = urljoin(cls.base_url, f"{name}/{version}.json")
46
-
+ url = urljoin(cls.base_url, f"{name}/{version}/json")
+ breakpoint()
47
data = fetch_json_response(url)
48
49
download_urls = data.get("urls", [{}])
0 commit comments