Metadata-Version: 2.1
Name: isEvenAPI
Version: 1.0
Summary: API Wrapper for the isEven api.
Home-page: https://github.com/UltiRequiem/isEven.py
Author: Eliaz Bobadilla
License: MIT
Keywords: api,isEven
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.25.1)

# isEven.py

<p>
<a href="./LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
<a href="https://pypi.org/project/isevenapi"><img alt="PyPI" src="https://img.shields.io/pypi/v/isevenapi"></a>
<a href="https://pepy.tech/project/isevenapi"><img alt="Downloads" src="https://pepy.tech/badge/isevenapi"></a>
<a href="https://github.com/UltiRequiem/isEven.py"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
</p>

Check if an integer is even using the [isEven API](https://isevenapi.xyz).

## Install

```bash
pip install isEvenApi
```

## Usage

You can view some examples in [examples](./examples).
Basic Usage:

```python
from is_even import is_even as ie

print(ie.is_even(10)) # True
print(ie.is_odd(10)) # False
```


