Metadata-Version: 2.4
Name: ToolVerse
Version: 1.2.0
Summary: A personal Python utility library
Author: Mohammed Ayaz
License: MIT License
        
        Copyright (c) 2026 Mohammed Ayaz
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
Project-URL: Homepage, https://github.com/gaderjimrs-creator/MyPythonLibrary
Project-URL: Repository, https://github.com/gaderjimrs-creator/MyPythonLibrary
Project-URL: Issues, https://github.com/gaderjimrs-creator/MyPythonLibrary/issues
Keywords: python,utilities,calculator,password-generator,string-tools,file-tools
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psutil
Dynamic: license-file

# ToolVerse

A powerful Python utility library created by **Mohammed Ayaz**.
This library provides ready-to-use tools for calculations, string operations, number utilities, password generation, file handling, date & time operations, random generators, student management, system utilities, and more.

---

## Features

| Module           | Description                                     |
| ---------------- | ----------------------------------------------- |
| calculator       | Mathematical calculations and utility functions |
| conversion_tools | Unit and measurement conversions                |
| date_time_tools  | Date and time utilities                         |
| file_tools       | File management operations                      |
| number_tools     | Number-related utilities                        |
| password_tools   | Password generation and security tools          |
| random_tools     | Random values, strings, dates, and passwords    |
| string_tools     | String manipulation utilities                   |
| student_tools    | Student management and reporting system         |
| system_tools     | System and OS information utilities             |

---

## Installation

Install directly from GitHub:

```bash
pip install git+https://github.com/gaderjimrs-creator/MyPythonLibrary.git
```

Or clone the repository:

```bash
git clone https://github.com/gaderjimrs-creator/MyPythonLibrary.git

cd MyPythonLibrary

pip install .
```

---

## Usage Examples

### Calculator

```python
from ToolVerse.calculator import MyCalculator

calc = MyCalculator()

print(calc.add(10, 5))
print(calc.sub(10, 5))
print(calc.mul(10, 5))
print(calc.div(10, 5))
```

### Password Generator

```python
from ToolVerse.password_tools import MyPasswordTools

pwd = MyPasswordTools()

print(pwd.generate_password())
print(pwd.generate_strong_password())
```

### String Tools

```python
from ToolVerse.string_tools import MyStringTools

s = MyStringTools()

s.set_string("Hello World")

print(s.reverse_string())
print(s.to_uppercase())
print(s.count_words())
```

---

## Modules Included

* calculator
* conversion_tools
* date_time_tools
* file_tools
* number_tools
* password_tools
* random_tools
* string_tools
* student_tools
* system_tools

---

## Running Tests

Run all tests using:

```bash
pytest
```

Expected result:

```bash
25 passed
```

---

## Project Structure

```text
MyPythonLibrary/
│
├── src/
│   └── MyPythonLibrary/
│
├── tests/
│
├── README.md
├── LICENSE
├── pyproject.toml
├── pytest.ini
└── setup.py
```

---

## Continuous Integration

GitHub Actions automatically runs all tests on every push and pull request.

---

## License

This project is licensed under the terms of the LICENSE file included in this repository.

---

## Author

**Mohammed Ayaz**

GitHub:
https://github.com/gaderjimrs-creator

Python Developer | Open Source Enthusiast

