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
330
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
90
Covid Tracker Kota Malang
ngalambackend
0
65
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
Querying Design System デザインシステムの意思決定を支える構造検索
ikumatadokoro
1
1.2k
2025 컴포즈 마법사
jisungbin
0
150
Claude Code on the Web を超える!? Codex Cloud の実践テク5選
sunagaku
0
610
DartASTとその活用
sotaatos
2
150
チーム開発の “地ならし"
konifar
8
6.2k
OSS開発者の憂鬱
yusukebe
14
11k
社内オペレーション改善のためのTypeScript / TSKaigi Hokuriku 2025
dachi023
1
130
開発15年のAIネイティブでない 巨大サービスのAI最適化
rapicro
0
100
アーキテクチャと考える迷子にならない開発者テスト
irof
9
3.4k
AI駆動開発ライフサイクル(AI-DLC)のホワイトペーパーを解説
swxhariu5
0
1.6k
[堅牢.py #1] テストを書かない研究者に送る、最初にテストを書く実験コード入門 / Let's start your ML project by writing tests
shunk031
11
6.1k
ソフトウェア設計の課題・原則・実践技法
masuda220
PRO
22
18k
Featured
See All Featured
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Building Adaptive Systems
keathley
44
2.8k
Bash Introduction
62gerente
615
210k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.1k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.3k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.8k
Optimizing for Happiness
mojombo
379
70k
Documentation Writing (for coders)
carmenintech
76
5.1k
Producing Creativity
orderedlist
PRO
348
40k
Statistics for Hackers
jakevdp
799
230k
Making the Leap to Tech Lead
cromwellryan
135
9.6k
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