/apip

A simple pip API wrapper!

Primary LanguagePythonMIT LicenseMIT

apip

Built with Python Built with Aiohttp

An easy, high level wrapper for the PyPi API. It wraps Pip and PyPi into an easier to use package in Python.


Installation

Requires Python 3.7+

To install apip on PyPi, run

pip install apip

Quickstart

>>> import apip
>>> import asyncio
>>> pip = apip.Client()
>>> asyncio.run(pip.get("module"))
>>> print(asyncio.run(pip.list()))

Documentation

Check the documentation for apip here.