Metadata-Version: 2.1
Name: PradyumnaCustomeDatabse
Version: 1.0.0
Summary: A simple package for managing notes using a custom database with Python.
Home-page: https://github.com/yourusername/notes_database
Author: Pradyumna Aher
Author-email: pradyumnaaher05@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Notes Database Package

This package provides functionality to create, read, update, and delete notes in a simple database using Python's `pickle` module.

## Features

- Create new notes with a title and content.
- Edit and delete existing notes.
- Store notes persistently in a local file.

## Installation

You can install the package using:
pip install .

## Usage

```python
from notes_database import NotesDatabase

db = NotesDatabase()
db.create_note("12345", {"title": "My First Note", "content": "This is a note."})
notes = db.get_notes()
print(notes)
