Hacker News new | ask | show | jobs
by jonatron 819 days ago
You have to know what DRF is good for, and what doesn't fit well with it. Because DRF is on top of Django (one layer not many layers), you can always fall back to a function that takes a request and returns a response. You can also fall back to SQL instead of the ORM.
1 comments

I've been using Django for about 5 years and I've never bothered with DRF or even the ORM. Pure SQL and function-based views works just fine