Metadata-Version: 2.4
Name: dailylifekit
Version: 0.1.0
Summary: DailyLifeKit is a Beginner-friendly python package that can help you in your project and program.
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.
        
        
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# DailyLifeKit
DailyLifeKit is a Beginner-friendly python package that can help you in your project and program.

## Installation
Install From PYPI:

```bash
pip install dailylifekit
```
## Version

Current Version: 0.1.0

## Features
| Module                    |Description                                                                                                    |
| ------------------------- | ------------------------------------------------------------------------------------------------------------- |
| StudentResultTools        | This tool can calculate student's total marks, percentage, grade, division, result and generate report cards. |

## Quick Start

### StudentResultTools


```python
from dailylifekit import StudentResultTools

student = StudentResultTools.from_input()

print(student.get_grade())
```

## Examples
 **StudentResultTools**
 example 1.
 ```python
student = StudentResultTools(
    "Name",
    90, 90, 90, 90, 90, 90,
    600,
    "ABC School",
    "11",
    "Hindi",
    "English",
    "Maths",
    "Science",
    "SST",
    "Computer"
)

print(student.get_grade())

```

example 2. 
```python

student = StudentResultTools.from_input() # It takes input from the user one by one
print(student.get_grade())

```

## Example Output
example 1. 
Grade A

example 2. 
This is based on your inputs

## Running Tests

```bash
pytest
```

## Project Structure
```text
DailyLifeKit/
├──src
│  ├───dailylifekit/
│
│──tests/
│   
│──README.md
│──LICENSE
└──pyproject.toml
 ```

## License
MIT License
