Django EAV 2 - EAV storage for modern Django
Django EAV 2 is a fork of django-eav, designed as an Entity-Attribute-Value storage model for Django. EAV is a flexible data model that allows storing entities with a vast number of attributes in a space-efficient manner. This model consists of three main components: entities (e.g., Person), attributes (e.g., height), and attribute values (e.g., 15.5). Django EAV 2 simplifies attribute manipulation, editing in Django Admin, and form instances.
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. It follows the model-view-controller (MVC) architectural pattern, providing an extensive set of built-in tools and conventions to streamline the creation of robust and scalable web applications.