Metadata-Version: 2.4
Name: ifitools-ibbi
Version: 0.1.0
Summary: A basic math and string utility library
Author: Ibtisam Sammar
Author-email: ibtisamsammar733@gmail.com
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# ifitools-ibbi

A simple Python library containing utility functions for doing basic mathematics and string operations.

## Modules and Functions

### 1. math_utils
* `is_prime(n)`: It will checks if a number is prime or not.
* `check_even_odd(number)`: it will determines if a number is even or odd.
* `num_table(number)`: It will generate a multiplication table for a number from 1 to 10.
* `find_square(number)`: It gives the square of a given number.

### 2. string_utils
* `reverse_string(text)`: It will reverse the given input text.
* `remove_spaces(text)`: It will remove extra leading and trailing spaces.
* `count_words(text)`: It will count the total number of words in a sentence.

## Installation
```bash
pip install ifitools-ibbi
