Metadata-Version: 2.0
Name: pkg-info
Version: 0.1.0
Summary: Flask-SQLAlchemy Model to API in one line of code
Home-page: https://github.com/acifani/pkg-info
Author: Alessandro Cifani
Author-email: alessandro.cifani@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python

pkg-info
========

Tiny library to fetch package info from `PyPI <https://pypi.python.org/pypi>`_.


Install
-------

``pipenv install pkg_info``

or

``pip intall pkg_info``

Usage
-----

.. code-block:: python

    from pkg_info import get_pkg_info

    pkg = get_pkg_info('requests')
    pkg.name        # 'requests'
    pkg.version     # '2.18.4'
    pkg.author.name # 'Kenneth Reitz'


