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
77
Introduction to Flask
ngalambackend
0
160
Achieving API Performance and Scalability
ngalambackend
0
85
Interfaces in Go
ngalambackend
0
57
CSS in JS in action
ngalambackend
0
56
Productive Remote Working with Scrum
ngalambackend
0
75
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
310
Other Decks in Programming
See All in Programming
エラーって何種類あるの?
kajitack
5
290
GraphRAGの仕組みまるわかり
tosuri13
7
480
Benchmark
sysong
0
250
技術同人誌をMCP Serverにしてみた
74th
0
280
Create a website using Spatial Web
akkeylab
0
300
Kotlin エンジニアへ送る:Swift 案件に参加させられる日に備えて~似てるけど色々違う Swift の仕様 / from Kotlin to Swift
lovee
1
250
DroidKnights 2025 - 다양한 스크롤 뷰에서의 영상 재생
gaeun5744
3
310
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
Java on Azure で LangGraph!
kohei3110
0
170
Webの外へ飛び出せ NativePHPが切り拓くPHPの未来
takuyakatsusa
2
320
データの民主化を支える、透明性のあるデータ利活用への挑戦 2025-06-25 Database Engineering Meetup#7
y_ken
0
310
すべてのコンテキストを、 ユーザー価値に変える
applism118
2
680
Featured
See All Featured
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.3k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.3k
Navigating Team Friction
lara
187
15k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
5
210
The Straight Up "How To Draw Better" Workshop
denniskardys
233
140k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Automating Front-end Workflow
addyosmani
1370
200k
Making the Leap to Tech Lead
cromwellryan
134
9.3k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
The World Runs on Bad Software
bkeepers
PRO
69
11k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
700
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