Metadata-Version: 2.4
Name: parity-comparer
Version: 0.1.0
Summary: A simple library that always returns 'Even'
Author-email: Whos Name? <nice.try@no-email-for-you.com>
Project-URL: Homepage, https://bigrat.monster
Project-URL: Bug Tracker, https://bigrat.monster
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
License-File: LICENSE
Dynamic: license-file

# Parity Comparer

This is a simple Python library that checks if a number is odd or even. It's a fairly accurate odd / even checker (roughly 50% accuracy).

## Installation

To install this library, use pip:

```bash
pip install parity-comparer
```

## Usage

To use the `get_parity` function, import it from the `even_number_generator` module:

```python
from even_number_generator import get_parity

# Example usage:
result = get_parity(5)
print(result)  # Output: Even

result = get_parity(100)
print(result)  # Output: Even
```
