Metadata-Version: 2.4
Name: studentease
Version: 0.1.0
Summary: A Python library for student GPA, CGPA and attendance calculations.
Author: Amna Imran
License: MIT
Keywords: student,gpa,cgpa,attendance,education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE .gitignore
Dynamic: license-file

# StudentEase

StudentEase is a simple Python library for students.

## Features

- Calculate GPA
- Calculate CGPA
- Calculate Attendance Percentage
- Check Attendance Status
- Validate Student Data

## Installation

```bash
pip install studentease
```

## Example

```python
from studentease import *

print(calculate_gpa(["A","A-","B+"],[3,3,2]))
print(calculate_cgpa(3.56,56,3.80,18))
print(attendance_percentage(18,20))
```
