How to serialize snake_case model fields to camelCase in django rest framework
I’m adding REST API endpoints to my existing Django application. I’m using DRF ModelSerializer. My model classes follow the pep8 naming convention and use snake_case for field names, but I need the JSON response to be in camelCase. How can I achieve that in a cross-cutting way without defining proxy fields on each of my serializers?