PyPI Simple Repository API client library
Project description
GitHub | PyPI | Documentation | Issues | Changelog
pypi-simple is a client library for the Python Simple Repository API as specified in PEP 503 and updated by PEP 592, PEP 629, PEP 658, PEP 691, PEP 700, PEP 708, PEP 714, and PEP 740. With it, you can query the Python Package Index (PyPI) and other pip-compatible repositories for a list of their available projects and lists of each project’s available package files. The library also allows you to download package files and query them for their project version, package type, file digests, requires_python string, PGP signature URL, and metadata URL.
See the documentation for more information.
Installation
pypi-simple requires Python 3.8 or higher. Just use pip for Python 3 (You have pip, right?) to install it:
python3 -m pip install pypi-simple
pypi-simple can optionally make use of tqdm. To install it alongside pypi-simple, specify the tqdm extra:
python3 -m pip install "pypi-simple[tqdm]"
Examples
Get information about a package:
>>> from pypi_simple import PyPISimple >>> with PyPISimple() as client: ... requests_page = client.get_project_page('requests') >>> pkg = requests_page.packages[0] >>> pkg.filename 'requests-0.2.0.tar.gz' >>> pkg.url 'https://files.pythonhosted.org/packages/ba/bb/dfa0141a32d773c47e4dede1a617c59a23b74dd302e449cf85413fc96bc4/requests-0.2.0.tar.gz' >>> pkg.project 'requests' >>> pkg.version '0.2.0' >>> pkg.package_type 'sdist' >>> pkg.digests {'sha256': '813202ace4d9301a3c00740c700e012fb9f3f8c73ddcfe02ab558a8df6f175fd'}
Download a package with a tqdm progress bar:
from pypi_simple import PyPISimple, tqdm_progress_factory
with PyPISimple() as client:
page = client.get_project_page("pypi-simple")
pkg = page.packages[-1]
client.download_package(
pkg, path=pkg.filename, progress=tqdm_progress_factory(),
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pypi_simple-1.6.1.tar.gz
.
File metadata
- Download URL: pypi_simple-1.6.1.tar.gz
- Upload date:
- Size: 56.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5124852a4da60316af056db9a4020fa4fcd851a0e607f80f1ebd7756d2ed8d0 |
|
MD5 | 0e4f41d32d1289472db10654bdf5204e |
|
BLAKE2b-256 | 272bb8548d960a1d740f7789548ef2bee28af9df680f98a88bc8ef18d3b4bb64 |
File details
Details for the file pypi_simple-1.6.1-py3-none-any.whl
.
File metadata
- Download URL: pypi_simple-1.6.1-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d2ec96a3b0f78d55024cf1e2cf30f3bc0d8b7dd2a7ccbbd469722fca1b4fbd2 |
|
MD5 | b45e1f03cc0141ab989119902e3f6f3d |
|
BLAKE2b-256 | 5b529eb8c098f612a0659f61f3b140929381bf528a6ca0fea65e06eaefce7f32 |