Metadata-Version: 2.4
Name: lokeshgrade
Version: 1.3
Summary: Grade, CGPA and Percentage Calculator
Author: Lokesh
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: summary

# lokeshgrade

lokeshgrade is a simple Python package that helps students calculate grades, convert CGPA to percentage, and convert percentage to CGPA.

## Features

* Calculate student grades based on marks
* Convert CGPA to Percentage
* Convert Percentage to CGPA

## Installation

```bash
pip install lokeshgrade
```

## Usage

```python
from lokeshgrade.grader import getgrade
from lokeshgrade.percentage import percentage
from lokeshgrade.cgpa import cgpa

print(getgrade(85))
print(percentage(8.5))
print(cgpa(80))
```

### Output

```text
B_Grade
80.75
8.421052631578947
```

## About

This is my first Python package published on PyPI. It was created to learn Python packaging, versioning, and package distribution while providing useful utilities for students.
