Metadata-Version: 2.1
Name: verlat
Version: 0.0.2
Summary: Get to know the latest version of a python package on PyPI.
Home-page: https://github.com/aahnik/py-utility-pack
Author: Aahnik Daw
Author-email: meet.aahnik@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# verlat

Get to know the latest version of a python package on PyPI.

Use code written by other people and save your time.

Be Dry! You don't need to reinvent the wheel.

## Installation

```shell
pip install verlat
```

## Usage

```python
from verlat import latest
proj = latest('project_name')
print(f'Version is {proj["version"]}')
print(f'Link {proj["release_url"]}')
```

## Docs for the `latest` function

Fetches all information about the latest version of a package on PyPI

```text
        **Args:**
            project_name (str): the name of package whose info you want
        **Returns:**
            dict: a dictionary containing all the important keys like
            - author
            - author_email
            - description
            - home_page
            - keywords
            - summary
            - version
            - release_url
```

Yeah! Its that simple!


