pypiwrap

A simple API wrapper for the Python Package Index


Keywords
api, api-wrapper, pypi, python, python-library, python3, statistics, stats
License
Other
Install
pip install pypiwrap==1.1.0

Documentation

pypiwrap

PyPi - Downloads PyPI GitHub PyPI - Python Version

A simple API wrapper for the Python Package Index (PyPI).

pypiwrap provides simple interfaces for getting project and release data from PyPI repositories.

Installation

Python 3.7 or higher is required.

Install pypiwrap through pip:

  • On Linux/macOS, python3 -m pip install pypiwrap
  • On Windows, py -3 -m pip install pypiwrap

Example

import pypiwrap

wrap = pypiwrap.PyPIClient()
project = wrap.get_project("requests")

print(project.name) # requests
print(project.author) # Kenneth Reitz
print(project.summary) # Python HTTP for Humans.