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
Super micro intro to Django
Search
ptone
November 01, 2011
Technology
1
86
Super micro intro to Django
ptone
November 01, 2011
Tweet
Share
Other Decks in Technology
See All in Technology
日本語で指示するだけ!AIで業務効率化を実現する 〜90分で体感する実践ワークショップ〜
taka_aki
0
1.5k
LLM時代のパフォーマンスチューニング:MongoDB運用で試したコンテキスト活用の工夫
ishikawa_pro
0
190
CDK CLIで使ってたあの機能、CDK Toolkit Libraryではどうやるの?
smt7174
4
210
「非更新サブスクリプション」って何者?
haseken_dev
0
120
測りにくい成果を測る — BtoB SaaSにおける効果検証への挑戦 / Shirokane Kougyou vol 20
sansan_randd
3
200
Snowflake Intelligenceにはこうやって立ち向かう!クラシルが考えるAI Readyなデータ基盤と活用のためのDataOps
gappy50
0
310
Swift6.2時代のconcurrencyを考える会
yuukiw00w
0
150
DroidKaigi 2025 Androidエンジニアとしてのキャリア
mhidaka
2
420
爆速でプロダクトをリリースしようと思ったらマイクロフロントエンドを選んでいた
kakehashi
PRO
2
200
使いやすいプラットフォームの作り方 ー LINEヤフーのKubernetes基盤に学ぶ理論と実践
lycorptech_jp
PRO
2
230
How AI agents are changing the way we should build APIs
fabpot
1
310
Webアプリケーションにオブザーバビリティを実装するRust入門ガイド
nwiizo
8
950
Featured
See All Featured
Speed Design
sergeychernyshev
32
1.1k
Embracing the Ebb and Flow
colly
87
4.8k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Into the Great Unknown - MozCon
thekraken
40
2k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Music & Morning Musume
bryan
46
6.8k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.6k
The Invisible Side of Design
smashingmag
301
51k
Navigating Team Friction
lara
189
15k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.1k
Transcript
DJANGO a micro introduction
MODEL LAYER Declarative syntax uses ORM to model python object
as SQL data contains business logic related to data
URL ROUTING Uses regex based pattern matching to determine what
bit of code to send a given request patterns can capture parameters from the URL path
VIEW LAYER Analogous to Rails Controllers provide a “view” into
your data responsible for fetching a preparing data for display takes a request, returns a response - responsible for doing everything in between
TEMPLATE LAYER Responsible for display of data generally HTML based
templates, used by Django View to insert data into pages Can have includes and parent hierarchy limited logic by design