Metadata-Version: 2.4
Name: lpydata-rishik
Version: 1.0.0
Summary: LPYData - Lightweight student database system
Author-email: Rishik Ravada <r.rishik2012.nani@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# LPYData

LPYData is a lightweight Python student database system.

## Features

- Add student
- Search student
- Update student
- Delete student
- JSON-based storage

## Installation

pip install lpydata-rishik

## Example Usage

```python
from lpydata import StudentManager

manager = StudentManager()
manager.add_student("S001", "Rishik", 9)
print(manager.get_student("S001"))
