Metadata-Version: 2.1
Name: release-finder
Version: 0.1.0
Summary: Python package that helps you find the latest releases information for a given GitHub repository.
Home-page: https://github.com/rahulXs/release-finder
License: MIT
Keywords: release-finder,release,finder,version,tag,rahulXs
Author: Rahul Sharma
Author-email: rahulxsh@gmail.com
Maintainer: Rahul Sharma
Maintainer-email: rahulxsh@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Requires-Dist: requests (>=2.13.0,<3.0.0)
Project-URL: Repository, https://github.com/rahulXs/release-finder
Description-Content-Type: text/markdown

# release-finder

`release-finder` is a Python package that helps you find the latest releases information for a given GitHub repository.

## Installation

Install the `release-finder` using the package manager [pip](https://pip.pypa.io/en/stable/).

```bash
pip install release-finder
```

## Usage

```python
import release_finder

# returns 'v4.1.6'
release_finder.latest_release("https://github.com/utmapp/UTM")

# returns 'v4.1.6'
release_finder.latest_release("https://github.com/utmapp/UTM", "YOUR_ACCESS_TOKEN")

# returns '2023-02-27T02:28:31Z'
release_finder.latest_release_date("https://github.com/utmapp/UTM")

# returns '2023-02-27T02:28:31Z'
release_finder.latest_release_date("https://github.com/utmapp/UTM", "YOUR_ACCESS_TOKEN")
```

## Contributing

Pull requests are welcome. Please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)

