Installation¶
Installing DRF Toolkit is straightforward using pip:
pip install drf-toolkit
Quick Start¶
After installing the package, you can start using the toolkit's features by importing the necessary components in your Django project.
For example, to use the enhanced model functionality:
from drf_toolkit.models import DiffModel
class YourModel(DiffModel):
# Your model fields here
pass
Check out the specific feature documentation pages to learn more about how to use each component of DRF Toolkit.