Building With Django REST Framework in Python

REST is a loosely defined protocol for listing, creating, changing, and deleting data on your server over HTTP. The Django REST framework (DRF) is a toolkit built on top of the Django web framework that reduces the amount of code you need to write to create REST interfaces. The full course assumes you are familiar with Django models, views, URL patterns, and the admin interface. Click here to learn more:
Back to Top