Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Build API With Django REST Framework
Search
Ngalam Backend Community
February 20, 2019
Programming
0
320
Build API With Django REST Framework
Ngalam Backend Community
February 20, 2019
Tweet
Share
More Decks by Ngalam Backend Community
See All by Ngalam Backend Community
Web_Scraping_with_Scrapy.pdf
ngalambackend
0
79
Introduction to Flask
ngalambackend
0
170
Achieving API Performance and Scalability
ngalambackend
0
87
Interfaces in Go
ngalambackend
0
57
CSS in JS in action
ngalambackend
0
56
Productive Remote Working with Scrum
ngalambackend
0
88
Covid Tracker Kota Malang
ngalambackend
0
62
Supercharge Local Development with Docker
ngalambackend
1
120
Building Scalable and Flexible API by Leveraging GraphQL and BigTable
ngalambackend
1
320
Other Decks in Programming
See All in Programming
Flutterで分数(Fraction)を表示する方法
koukimiura
0
140
Building, Deploying, and Monitoring Ruby Web Applications with Falcon (Kaigi on Rails 2025)
ioquatix
4
2.3k
All About Angular's New Signal Forms
manfredsteyer
PRO
0
190
AIと人間の共創開発!OSSで試行錯誤した開発スタイル
mae616
2
740
Six and a half ridiculous things to do with Quarkus
hollycummins
0
190
3年ぶりにコードを書いた元CTOが Claude Codeと30分でMVPを作った話
maikokojima
0
590
CSC305 Lecture 05
javiergs
PRO
0
220
CSC305 Lecture 04
javiergs
PRO
0
270
20251016_Rails News ~Rails 8.1の足音を聴く~
morimorihoge
2
580
CSC305 Lecture 08
javiergs
PRO
0
250
スマホから Youtube Shortsを見られないようにする
lemolatoon
27
33k
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
260
Featured
See All Featured
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
How to Ace a Technical Interview
jacobian
280
24k
It's Worth the Effort
3n
187
28k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Designing for Performance
lara
610
69k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Building an army of robots
kneath
306
46k
Building Better People: How to give real-time feedback that sticks.
wjessup
369
20k
The Invisible Side of Design
smashingmag
302
51k
We Have a Design System, Now What?
morganepeng
53
7.8k
Transcript
Build API with django REST framework Express Your Feeling With
Code
Express Your Feeling With Code A powerful and flexible toolkit
for building Web APIs.
Express Your Feeling With Code Installation Virtual Environment: • pip
install Django • pip install djangorestframework INSTALLED_APPS = ( 'rest_framework', )
Express Your Feeling With Code Quickstart Serializer Class based Views
Express Your Feeling With Code How data is represented. Serializers
• BaseSerializer • HyperlinkedModelSerializer • ListSerializer • ModelSerializer • Serializer
Express Your Feeling With Code Powerful pattern that allows us
to reuse common functionality. Class based Views • Mixins • Generics • Viewsets
Express Your Feeling With Code Reference : • django-rest-framework.org •
cdrf.co Example project : • github.com/mahrus-kh/meetup-nbc-drf • meetup-nbc-drf.herokuapp.com