Metadata-Version: 2.1
Name: petrolprices-sdk
Version: 0.1.0
Summary: PetrolPrices Python SDK
Project-URL: Source Code, https://github.com/owenvoke/petrolprices-python-sdk
Project-URL: Issues, https://github.com/owenvoke/petrolprices-python-sdk/issues
Author-email: Owen Voke <development@voke.dev>
License-Expression: MIT
License-File: LICENSE.md
Keywords: petrolprices,sdk
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.11.1
Requires-Dist: requests>=2.28.1
Description-Content-Type: text/markdown

# PetrolPrices Python

[![Latest Version on PyPi][ico-version]][link-pypi]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-github-actions]][link-github-actions]
[![Buy us a tree][ico-treeware-gifting]][link-treeware-gifting]

An SDK to easily work with the [PetrolPrices API](https://petrolprices.com)

## Install

Via Pip

```shell
pip install petrolprices-sdk
```

## Usage

```python
from petrolprices import PetrolPrices

petrolprices = PetrolPrices(api_token="your-token")

sites = petrolprices.search()
```

| Available Methods          | Description                                                                        |
|:---------------------------|:-----------------------------------------------------------------------------------|
| `petrolprices.search(...)` | Retrieve a `SearchEntriesCollection` dict with details about nearby fuel stations. |

## Change log

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Testing

```shell
hatch shell

hatch run test
```

## Security

If you discover any security related issues, please email security@voke.dev instead of using the issue tracker.

## Credits

- [Owen Voke][link-author]
- [All Contributors][link-contributors]

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

## Treeware

You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.

It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

You can buy trees [here][link-treeware-gifting].

Read more about Treeware at [treeware.earth][link-treeware].

[ico-version]: https://img.shields.io/pypi/v/petrolprices-sdk.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-github-actions]: https://img.shields.io/github/actions/workflow/status/owenvoke/petrolprices-python-sdk/tests.yml?branch=main&style=flat-square
[ico-treeware-gifting]: https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen?style=flat-square

[link-pypi]: https://pypi.org/project/petrolprices-sdk
[link-github-actions]: https://github.com/owenvoke/petrolprices-python-sdk/actions
[link-treeware]: https://treeware.earth
[link-treeware-gifting]: https://ecologi.com/owenvoke?gift-trees
[link-author]: https://github.com/owenvoke
[link-contributors]: https://github.com/owenvoke/petrolprices-python-sdk/contributors
