Metadata-Version: 2.1
Name: django_dict_orm
Version: 0.1.0
Summary: A lightweight ORM for JSON data storage in Python.
Home-page: https://gitlab.com/mirahmadhacker2007/django-dict-orm.git
Author: Mirahmad
Author-email: mirahmadhacker2007@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
License-File: LICENSE
Requires-Dist: bcrypt==4.2.0
Requires-Dist: setuptools==75.2.0

# DjangoDict ORM

A lightweight ORM (Object-Relational Mapping) for managing JSON data storage in Python. DjangoDict ORM allows you to define your data models using Python classes and interact with JSON files as if they were database tables.

## Features

- Easy-to-use model definitions with various field types.
- Automatic data validation and uniqueness checks.
- Support for basic CRUD operations (Create, Read, Update, Delete).
- Integration with JSON file storage for persistence.
- Easy querying with a simple interface.

## Installation

You can install DjangoDict ORM directly from GitLab:

```bash
pip install git+https://gitlab.com/mirahmadhacker2007/django-dict-orm.git
