SlideShare a Scribd company logo
DJANGO REST
FRAMEWORK
IN 20 MINUTEN   ;)
Python User Group Bonn, 16. April 2015
Andi Albrecht
"Django REST framework is a powerful and flexible toolkit
that makes it easy to build Web APIs."
http://www.django-rest-framework.org/
BATTERIES INCLUDED
API Browser
Serialisierung von Daten und Django-Models
automatische View-Generierung
Sicherheitsmechanismen
Validierung, sinnvolle HTTP-Status-Codes, URL-Muster,
etc.
Doku, Doku, Doku...
HOW IT WORKS:
SERIALIZERS
from django.contrib.auth.models import User, Group
from rest_framework import serializers
class UserSerializer(serializers.HyperlinkedModelSerializer):
    class Meta:
        model = User
        fields = ('url', 'username', 'email', 'groups')
class GroupSerializer(serializers.HyperlinkedModelSerializer):
    class Meta:
        model = Group
        fields = ('url', 'name')
HOW IT WORKS: VIEWS
from django.contrib.auth.models import User, Group
from rest_framework import viewsets
from quickstart.serializers import UserSerializer, GroupSerializer
class UserViewSet(viewsets.ModelViewSet):
    """API endpoint that allows users to be viewed or edited."""
    queryset = User.objects.all()
    serializer_class = UserSerializer
class GroupViewSet(viewsets.ModelViewSet):
    """API endpoint that allows groups to be viewed or edited."""
    queryset = Group.objects.all()
    serializer_class = GroupSerializer
HOW IT WORKS:
ROUTER
from django.conf.urls import url, include
from rest_framework import routers
from tutorial.quickstart import views
router = routers.DefaultRouter()
router.register(r'users', views.UserViewSet)
router.register(r'groups', views.GroupViewSet)
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
    url(r'^', include(router.urls)),
    url(r'^api­auth/', include('rest_framework.urls'))
]
DONE.
(Demo)

More Related Content

PDF
Introduction to Django REST Framework, an easy way to build REST framework in...
PDF
Rest apis with DRF
PPTX
REST Easy with Django-Rest-Framework
PDF
Resftul API Web Development with Django Rest Framework & Celery
PDF
Django Rest Framework - Building a Web API
PPTX
Write an API for Almost Anything: The Amazing Power and Flexibility of Django...
PPTX
Django rest framework
PDF
Django rest framework tips and tricks
Introduction to Django REST Framework, an easy way to build REST framework in...
Rest apis with DRF
REST Easy with Django-Rest-Framework
Resftul API Web Development with Django Rest Framework & Celery
Django Rest Framework - Building a Web API
Write an API for Almost Anything: The Amazing Power and Flexibility of Django...
Django rest framework
Django rest framework tips and tricks

What's hot (20)

PDF
Djangocon 2014 angular + django
PDF
Djangocon 2014 - Django REST Framework - So Easy You Can Learn it in 25 Minutes
PDF
Introduction to Spring Boot
PDF
Scalable web application architecture
PDF
Using Play Framework 2 in production
PDF
Introduction to django
PDF
Javascript Test Automation Workshop (21.08.2014)
PPTX
PDF
Webdriver.io
PDF
Spring framework 3.2 > 4.0 — themes and trends
PPTX
Play! Framework for JavaEE Developers
PDF
Play Framework 2.5
PPTX
Web driver training
PPT
Build Your Own CMS with Apache Sling
PDF
Selenium webdriver
PDF
Being a jsp
PDF
Ch5 beeing an application
PPTX
CQ5 Development Setup, Maven Build and Deployment
PDF
Microservices with Spring Boot
Djangocon 2014 angular + django
Djangocon 2014 - Django REST Framework - So Easy You Can Learn it in 25 Minutes
Introduction to Spring Boot
Scalable web application architecture
Using Play Framework 2 in production
Introduction to django
Javascript Test Automation Workshop (21.08.2014)
Webdriver.io
Spring framework 3.2 > 4.0 — themes and trends
Play! Framework for JavaEE Developers
Play Framework 2.5
Web driver training
Build Your Own CMS with Apache Sling
Selenium webdriver
Being a jsp
Ch5 beeing an application
CQ5 Development Setup, Maven Build and Deployment
Microservices with Spring Boot
Ad

Viewers also liked (17)

PPTX
Flask and Paramiko for Python VA
PDF
Ansible on AWS
PPTX
Django deployment best practices
KEY
Do more than one thing at the same time, the Python way
PDF
Towards Continuous Deployment with Django
PDF
Two scoops of Django - Security Best Practices
PDF
Pythonic Deployment with Fabric 0.9
PDF
Django REST Framework
PDF
Building a platform with Django, Docker, and Salt
PDF
Life in a Queue - Using Message Queue with django
PDF
Django in the Real World
KEY
Scaling Django
PDF
12 tips on Django Best Practices
PPT
Ansible presentation
PPT
Introduction to SSH
PDF
Django Best Practices
PPTX
An Overview of Models in Django
Flask and Paramiko for Python VA
Ansible on AWS
Django deployment best practices
Do more than one thing at the same time, the Python way
Towards Continuous Deployment with Django
Two scoops of Django - Security Best Practices
Pythonic Deployment with Fabric 0.9
Django REST Framework
Building a platform with Django, Docker, and Salt
Life in a Queue - Using Message Queue with django
Django in the Real World
Scaling Django
12 tips on Django Best Practices
Ansible presentation
Introduction to SSH
Django Best Practices
An Overview of Models in Django
Ad

Similar to Django rest framework in 20 minuten (20)

PPTX
Django Frequently Asked Interview Questions
PDF
An Introduction to Django Web Framework
PPT
DJango
PDF
Mini Curso de Django
PDF
Design Patterns in Automation Framework.pdf
PDF
The Role of Python in SPAs (Single-Page Applications)
PPTX
Working with AngularJS
PDF
Rest api with Python
PDF
بررسی چارچوب جنگو
PPTX
Web development with django - Basics Presentation
PDF
Django
PDF
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
PPTX
Django web framework
PPTX
React django
PDF
Angular를 활용한 웹 프론트단 개발과 2.0에서 달라진점
PDF
Angular를 활용한 웹 프론트단 개발과 2.0에서 달라진점
PDF
Rapid Prototyping with TurboGears2
DOCX
Java interview questions and answers
PPTX
Why Django for Web Development
PPTX
Angular - Beginner
Django Frequently Asked Interview Questions
An Introduction to Django Web Framework
DJango
Mini Curso de Django
Design Patterns in Automation Framework.pdf
The Role of Python in SPAs (Single-Page Applications)
Working with AngularJS
Rest api with Python
بررسی چارچوب جنگو
Web development with django - Basics Presentation
Django
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
Django web framework
React django
Angular를 활용한 웹 프론트단 개발과 2.0에서 달라진점
Angular를 활용한 웹 프론트단 개발과 2.0에서 달라진점
Rapid Prototyping with TurboGears2
Java interview questions and answers
Why Django for Web Development
Angular - Beginner

More from Andi Albrecht (6)

PDF
-getrieben. Wer treibt eigentlich die Test-Entwicklung?
PDF
sqlparse Lightning Talk
PDF
Der Django-Admin-Bereich im Überblick
PDF
Metaprogrammierung, praktisch
PDF
Webbrowser-Automatisierung mit Python und Selenium WebDriver
PDF
Verbesserung der Code-"Qualität" durch statische Code-Analyse
-getrieben. Wer treibt eigentlich die Test-Entwicklung?
sqlparse Lightning Talk
Der Django-Admin-Bereich im Überblick
Metaprogrammierung, praktisch
Webbrowser-Automatisierung mit Python und Selenium WebDriver
Verbesserung der Code-"Qualität" durch statische Code-Analyse

Recently uploaded (20)

PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Approach and Philosophy of On baking technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Machine Learning_overview_presentation.pptx
PDF
Getting Started with Data Integration: FME Form 101
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
OMC Textile Division Presentation 2021.pptx
PPTX
Spectroscopy.pptx food analysis technology
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
A Presentation on Artificial Intelligence
PDF
Mushroom cultivation and it's methods.pdf
PDF
Machine learning based COVID-19 study performance prediction
Unlocking AI with Model Context Protocol (MCP)
Approach and Philosophy of On baking technology
Per capita expenditure prediction using model stacking based on satellite ima...
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Spectral efficient network and resource selection model in 5G networks
SOPHOS-XG Firewall Administrator PPT.pptx
Empathic Computing: Creating Shared Understanding
Machine Learning_overview_presentation.pptx
Getting Started with Data Integration: FME Form 101
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Network Security Unit 5.pdf for BCA BBA.
A comparative analysis of optical character recognition models for extracting...
OMC Textile Division Presentation 2021.pptx
Spectroscopy.pptx food analysis technology
NewMind AI Weekly Chronicles - August'25-Week II
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
A Presentation on Artificial Intelligence
Mushroom cultivation and it's methods.pdf
Machine learning based COVID-19 study performance prediction

Django rest framework in 20 minuten