Skip to main content

A simple wrapper for interfacing with PyPi APIs.

Project description

pypiwrap

A simple wrapper for interfacing with PyPi (Python Package Index) APIs.

Documentation: PyPiWrap Wiki

Installation

The simplest way to install PyPiWrap is via PIP:

pip install pypiwrap

Verify that PyPiWrap has been installed correctly by importing it in any Python file or shell:

>>> import pypiwrap
>>> 

Examples

Example 1 - Package information

import pypiwrap.apis as pypiapis
package = pypiapis.data.PackageInfo("requests")
print(f"{package.name} by {package.author}")
print(package.summary)
requests by Kenneth Reitz
Python HTTP for Humans.

Example 2 - Package release information

import pypiwrap.apis as pypiapis
releases = pypiapis.data.ReleaseInfo("dotenv")
print(releases.version_data)
{
    '0.0.1': [File(name='dotenv-0.0.1.tar.gz', type='sdist', size='6.46 KB', url='...')],
    '0.0.2': [File(name='dotenv-0.0.2.tar.gz', type='sdist', size='6.73 KB', url='...')],
    '0.0.4': [File(name='dotenv-0.0.4.tar.gz', type='sdist', size='1.97 KB', url='...')],
    '0.0.5': [File(name='dotenv-0.0.5.tar.gz', type='sdist', size='2.42 KB', url='...')]
}

Example 3 - PyPi statistics

import pypiwrap.apis as pypiapis
stats = pypiapis.stats.Statistics().stats
print(stats.total_packages_size_readable)
'7.09 TB'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypiwrap-0.1.0.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page