Metadata-Version: 2.1
Name: pypiwrap
Version: 0.2.0
Summary: A simple API wrapper for the Python Package Index
Home-page: https://github.com/aescarias/pypiwrap
Author: Angel Carias
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Provides-Extra: docs
License-File: LICENSE

# pypiwrap

![PyPi - Downloads](https://img.shields.io/pypi/dw/pypiwrap?style=flat-square)
![PyPI](https://img.shields.io/pypi/v/pypiwrap?style=flat-square)
![GitHub](https://img.shields.io/github/license/aescarias/pypiwrap?style=flat-square)
![Lines of code](https://img.shields.io/tokei/lines/github/aescarias/pypiwrap?style=flat-square)

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

It includes a minimal interface for users to get information about Python packages.

## Installation

Install `pypiwrap` via `pip` by using `pip install pypiwrap` or equivalent methods.

## Example

```py
import pypiwrap
wrap = pypiwrap.PyPiClient()
package = wrap.get_package("requests")
print(package.name) # requests
print(package.author) # Kenneth Reitz
print(package.summary) # Python HTTP for Humans.
```


