Integration guide#

We provide multiple APIs to help you integrate with PyPI; see API reference.

Many tools already integrate with PyPI, uploading packages or retrieving data; see the Python Packaging Guide’s tool recommendations.

Migrating to the new PyPI#

Warehouse has now replaced the legacy PyPI site that was deployed at pypi.python.org. If your site/service used to link or upload to pypi.python.org, it may continue to work due to redirects, but you should use pypi.org instead.

You should also watch our status page and subscribe to the PyPI announcement list (low-traffic) to find out about future changes.

Here are some tips.

Note

{name} is the name of the package as represented in the URL; for https://pypi.org/project/arrow/, you’d insert arrow wherever you see {name}.

  • If your client correctly follows redirects, you can replace pypi.python.org in your links with pypi.org and everything should just work. For instance, the project detail page https://pypi.org/pypi/{name} (with or without a trailing slash) redirects to https://pypi.org/project/{name}/.

  • Shorter URL: https://pypi.org/p/{name}/ will redirect to https://pypi.org/project/{name}/.

  • All APIs: access is HTTPS-only (changed in October 2017). And pypi.org honors an Accept-Encoding: gzip header, whereas pypi.python.org ignored it.

  • JSON API: https://pypi.org/pypi/{name}/json returns the expected JSON response directly. See JSON API.

  • XML-RPC API: See Changes to XMLRPC API. Will be deprecated in the future (no specific end date set yet); switch to the RSS or JSON APIs. If you depend on an XML-RPC call that our other APIs do not support, tell us.

  • Packages/updates RSS feeds: https://pypi.org/pypi?%3Aaction=rss redirects to https://pypi.org/rss/updates.xml, and https://pypi.org/pypi?%3Aaction=packages_rss redirects to https://pypi.org/rss/packages.xml. See Feeds for descriptions. The data differs from the legacy feed data because the new feeds are standards-compliant and fix inaccuracies in the publication date.

  • Documentation upload: Users can no longer use doc_upload in the API to upload documentation ZIP files, separate from packages, to be hosted at pythonhosted.org (discussion).

  • User-Agent Filtering: Some client user agents were filtered to always use legacy.pypi.org, a temporary deployment of the legacy PyPI codebase, regardless of brownouts or redirects, in order to give them extra time to migrate. On 30 April 2018, legacy.pypi.org was shut down, so all clients use pypi.org regardless of their User-Agent.

  • Subscribe to the PyPI announcement list (low-traffic).

If you’re a PyPI end user or packager looking to migrate to the new PyPI, see the official Python Packaging User Guide on migrating to PyPI.

Querying PyPI for Package URLs#

When copying a download link from https://pypi.org, you get a URL with a random hash value in it.

This hash value is calculated from the checksum of the file. The URLs on PyPI for individual files are static and do not change.

Official guidance#

Query PyPI’s JSON API to determine where to download files from.

If you so choose#

You can use our conveyor service to fetch this file, but this realistically exists primarily to support that historical predictable URLs still work.

Example:#

$ curl -I https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-15.2.0.tar.gz
HTTP/2 302
location: https://files.pythonhosted.org/packages/b1/72/2d70c5a1de409ceb3a27ff2ec007ecdd5cc52239e7c74990e32af57affe9/virtualenv-15.2.0.tar.gz

But as you’ll note, it is just a redirect to the canonical file.

You should generally query the index for package URLs rather than guessing, but the URL structure for the redirect service is:

/packages/{python_version}/{project_l}/{project_name}/{filename}

where project_l is the first letter of the project name. python_version can be one of many things, akin to the old file structure PyPI used to hold on disk. In general this is only a good idea for source as a python_version to fetch tar and zip files. Otherwise, you will want to match the format of the python_version field of the releases in the JSON API.