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
87
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
どの様にAIエージェントと 協業すべきだったのか?
takefumiyoshii
2
610
私はどうやって技術力を上げたのか
yusukebe
43
17k
Чего вы не знали о строках в Python – Василий Рябов, PythoNN
sobolevn
0
160
Swift Concurrency - 状態監視の罠
objectiveaudio
2
460
高度なUI/UXこそHotwireで作ろう Kaigi on Rails 2025
naofumi
4
3.5k
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
140
2025年版 サーバーレス Web アプリケーションの作り方
hayatow
23
25k
XP, Testing and ninja testing ZOZ5
m_seki
2
300
GitHub Actions × AWS OIDC連携の仕組みと経緯を理解する
ota1022
0
240
Le côté obscur des IA génératives
pascallemerrer
0
120
エンジニアとして高みを目指す、 利益を生み出す設計の考え方 / design-for-profit
minodriven
23
12k
ABEMAモバイルアプリが Kotlin Multiplatformと歩んだ5年 ─ 導入と運用、成功と課題 / iOSDC 2025
akkyie
0
330
Featured
See All Featured
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
54
3k
GraphQLとの向き合い方2022年版
quramy
49
14k
A designer walks into a library…
pauljervisheath
209
24k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.5k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.2k
Producing Creativity
orderedlist
PRO
347
40k
Designing Experiences People Love
moore
142
24k
Navigating Team Friction
lara
189
15k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
45
2.5k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
How GitHub (no longer) Works
holman
315
140k
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