Metadata-Version: 2.4
Name: DDpalindrome-utils
Version: 0.1.0
Summary: A Python package to check palindrome numbers.
Author: Devidutta Das
License-Expression: Apache-2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# DDpalindrome-utils

A simple Python package to check whether a number is a palindrome.

## Installation

```bash
pip install DDpalindrome-utils
```

## Usage

```python
from DDpalindrome_utils import is_palindrome

print(is_palindrome(121))  # True
print(is_palindrome(123))  # False
```

## Features

- Check whether a number is a palindrome
- Simple and lightweight
- Easy to use
