Metadata-Version: 2.2
Name: isoddeven
Version: 1.0.1
Summary: A Python package to check if a number is odd or even.
Home-page: https://github.com/nilaysarma/isoddeven
Author: Nilay Sarma
License: MIT
Project-URL: Repository, https://github.com/nilaysarma/isoddeven
Project-URL: Release Notes, https://github.com/nilaysarma/isoddeven/releases/latest
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: project-url
Dynamic: summary

# isoddeven
## A Python package to check if a number is odd or even.

[![PyPI - Version](https://img.shields.io/pypi/v/isoddeven)](https://pypi.org/project/isoddeven/)
[![Pepy Total Downloads](https://img.shields.io/pepy/dt/isoddeven)](https://pypi.org/project/isoddeven/)
[![PyPI - License](https://img.shields.io/pypi/l/isoddeven)](https://pypi.org/project/isoddeven/)
[![GitHub deployments](https://img.shields.io/github/deployments/nilaysarma/isoddeven/release)](https://github.com/nilaysarma/isoddeven/deployments/release)
[![PyPI - Status](https://img.shields.io/pypi/status/isoddeven)](https://pypi.org/project/isoddeven/)

## 🚀 Installation
You can install the package using pip:
```sh
pip install isoddeven
```
To update the package use this command:
```sh
pip install --upgrade isoddeven
```

## 📖 Usage
Here's a quick example of how to use it:
```python
from isoddeven import isoddeven

print(isoddeven.isodd(1)) # True
print(isoddeven.isodd(2)) # False
print(isoddeven.iseven(3)) # False
print(isoddeven.iseven(4)) # True
print(isoddeven.state(5)) # odd
print(isoddeven.state(6)) # even
```

## 📄 License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/nilaysarma/isoddeven/blob/main/LICENSE) file for details.
