Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building Rest API with Django Rest Framework by Jose Machava

Pycon ZA
October 12, 2018

Building Rest API with Django Rest Framework by Jose Machava

Most of web applications provide an rest API to connect with other application that need to access a specific information and django rest framework is a powerful way for django developers to create robust rest API, I'll demonstrate the process of creating a complex API using django rest framework.

This talk is intended for beginner who have some familiar with python and want a web framework to create rest API to connect with a mobile application.

Content which will be covered are as follows:
* HTTP methods
* Django Models
* Request & Response
* Status Codes
* Serializers
* Viewsets and Routers

Prerequisites:
* Some experience with Django
* Basic python concepts
* Knowledge about HTTP and web development

Pycon ZA

October 12, 2018
Tweet

More Decks by Pycon ZA

Other Decks in Programming

Transcript

  1. Building Rest API with Django Rest Framework PyConZA 2018

  2. Building Rest API with Django Rest Framework I’m José Machava

    @josesmachava
  3. Building Rest API with Django Rest Framework Computer Science Student

  4. Building Rest API with Django Rest Framework Full Stack Software

    Developer
  5. Building Rest API with Django Rest Framework kutiva

  6. Building Rest API with Django Rest Framework

  7. Building Rest API with Django Rest Framework Let’s build rest

    API
  8. Building Rest API with Django Rest Framework

  9. Building Rest API with Django Rest Framework

  10. Building Rest API with Django Rest Framework

  11. Building Rest API with Django Rest Framework

  12. Building Rest API with Django Rest Framework

  13. Building Rest API with Django Rest Framework

  14. Building Rest API with Django Rest Framework pip list

  15. Building Rest API with Django Rest Framework

  16. Building Rest API with Django Rest Framework settings.py

  17. Building Rest API with Django Rest Framework blog/models.py

  18. Building Rest API with Django Rest Framework

  19. Building Rest API with Django Rest Framework

  20. Building Rest API with Django Rest Framework

  21. Building Rest API with Django Rest Framework blog/admin.py

  22. Building Rest API with Django Rest Framework

  23. Building Rest API with Django Rest Framework

  24. Building Rest API with Django Rest Framework api/serializer.py

  25. Building Rest API with Django Rest Framework api/serializer.py

  26. Building Rest API with Django Rest Framework api/urls.py

  27. Building Rest API with Django Rest Framework josemachava/urls.py

  28. Building Rest API with Django Rest Framework

  29. Building Rest API with Django Rest Framework

  30. Building Rest API with Django Rest Framework Thank You