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
1 API - 3 Framework - 30 minutes
Search
Iacopo Spalletti
October 03, 2019
Programming
0
92
1 API - 3 Framework - 30 minutes
Iacopo Spalletti
October 03, 2019
Tweet
Share
More Decks by Iacopo Spalletti
See All by Iacopo Spalletti
Writing Async Microservices in Python
yakky
0
560
Building real time applications with Django and Channels 2 @ DjangoCon Europe
yakky
1
580
Building real time applications with Django and Channels 2 @ PyCon Italia
yakky
0
430
Building real time applications with Django
yakky
0
540
django knocker
yakky
0
55
django CMS application - A comprehensive approach
yakky
0
46
django CMS + Channels + DRF = ♥
yakky
0
310
Liveblogging using channels
yakky
0
39
django CMS @ DUTH - Exploiting Django for a good cause
yakky
0
370
Other Decks in Programming
See All in Programming
Amazon Nova Reelの可能性
hideg
0
200
ゼロからの、レトロゲームエンジンの作り方
tokujiros
3
1.1k
Jaspr Dart Web Framework 박제창 @Devfest 2024
itsmedreamwalker
0
150
ChatGPT とつくる PHP で OS 実装
memory1994
PRO
3
190
asdf-ecspresso作って 友達が増えた話 / Fujiwara Tech Conference 2025
koluku
0
1.4k
見えないメモリを観測する: PHP 8.4 `pg_result_memory_size()` とSQL結果のメモリ管理
kentaroutakeda
0
940
良いユニットテストを書こう
mototakatsu
11
3.6k
オニオンアーキテクチャを使って、 Unityと.NETでコードを共有する
soi013
0
370
CQRS+ES の力を使って効果を感じる / Feel the effects of using the power of CQRS+ES
seike460
PRO
0
240
React 19でお手軽にCSS-in-JSを自作する
yukukotani
5
570
return文におけるstd::moveについて
onihusube
1
1.4k
BEエンジニアがFEの業務をできるようになるまでにやったこと
yoshida_ryushin
0
200
Featured
See All Featured
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Six Lessons from altMBA
skipperchong
27
3.6k
Java REST API Framework Comparison - PWX 2021
mraible
28
8.3k
Music & Morning Musume
bryan
46
6.3k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
Statistics for Hackers
jakevdp
797
220k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
GitHub's CSS Performance
jonrohan
1030
460k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.9k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
98
18k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
Testing 201, or: Great Expectations
jmmastey
41
7.2k
Transcript
1 API - 3 Framework - 30 minutes Iacopo Spalletti
1 / 28 Iacopo Spalletti - @yakkys
Hello, I am Iacopo Founder and CTO @NephilaIT Djangonaut and
django CMS core developer @yakks @
[email protected]
https://keybase.io/yakky https://github.com/yakky https://speakerdeck.com/yakky 2 / 28 Iacopo Spalletti - @yakkys
API? What's that? Application Programming Interface 3 / 28 Iacopo
Spalletti - @yakkys
API? What's that? Application Programming Interface Web API 4 /
28 Iacopo Spalletti - @yakkys
5 / 28 Iacopo Spalletti - @yakkys
6 / 28 Iacopo Spalletti - @yakkys
7 / 28 Iacopo Spalletti - @yakkys
REST HTTP as a semantic protocol 8 / 28 Iacopo
Spalletti - @yakkys
Call URL, stuff happens 9 / 28 Iacopo Spalletti -
@yakkys
Enters Python 10 / 28 Iacopo Spalletti - @yakkys
Django Flask Starlette 11 / 28 Iacopo Spalletti - @yakkys
Django The web framework for perfectionists with deadlines 12 /
28 Iacopo Spalletti - @yakkys
Django The web framework for perfectionists with deadlines Quick building
non-trivial applications 13 / 28 Iacopo Spalletti - @yakkys
Flask Lightweight WSGI web application framework 14 / 28 Iacopo
Spalletti - @yakkys
Flask Lightweight WSGI web application framework Complexity grows with the
project 15 / 28 Iacopo Spalletti - @yakkys
Starlette The little ASGI framework that shines 16 / 28
Iacopo Spalletti - @yakkys
Starlette The little ASGI framework that shines Microservice oriented 17
/ 28 Iacopo Spalletti - @yakkys
Some code now? 18 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
19 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves 20 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves Each Shelf belongs to an Organization 21 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves Each Shelf belongs to an Organization Each Shelf can hold a given set of Boxes 22 / 28 Iacopo Spalletti - @yakkys
Django https://github.com/yakky/3frameworks-django 23 / 28 Iacopo Spalletti - @yakkys
Flask https://github.com/yakky/3frameworks-flask 24 / 28 Iacopo Spalletti - @yakkys
Starlette https://github.com/yakky/3frameworks-starlette 25 / 28 Iacopo Spalletti - @yakkys
26 / 28 Iacopo Spalletti - @yakkys
Questions? 27 / 28 Iacopo Spalletti - @yakkys
Thanks @yakks @
[email protected]
https://keybase.io/yakky https://github.com/yakky https://speakerdeck.com/yakky 28 / 28 Iacopo
Spalletti - @yakkys
1 API - 3 Framework - 30 minutes Iacopo Spalletti
1 / 28 Iacopo Spalletti - @yakkys
Hello, I am Iacopo Founder and CTO @NephilaIT Djangonaut and
django CMS core developer @yakks @
[email protected]
https://keybase.io/yakky https://github.com/yakky https://speakerdeck.com/yakky 2 / 28 Iacopo Spalletti - @yakkys
API? What's that? Application Programming Interface 3 / 28 Iacopo
Spalletti - @yakkys
API? What's that? Application Programming Interface Web API 4 /
28 Iacopo Spalletti - @yakkys
5 / 28 Iacopo Spalletti - @yakkys
6 / 28 Iacopo Spalletti - @yakkys
7 / 28 Iacopo Spalletti - @yakkys
REST HTTP as a semantic protocol 8 / 28 Iacopo
Spalletti - @yakkys
Call URL, stuff happens 9 / 28 Iacopo Spalletti -
@yakkys
Enters Python 10 / 28 Iacopo Spalletti - @yakkys
Django Flask Starlette 11 / 28 Iacopo Spalletti - @yakkys
Django The web framework for perfectionists with deadlines 12 /
28 Iacopo Spalletti - @yakkys
Django The web framework for perfectionists with deadlines Quick building
non-trivial applications 13 / 28 Iacopo Spalletti - @yakkys
Flask Lightweight WSGI web application framework 14 / 28 Iacopo
Spalletti - @yakkys
Flask Lightweight WSGI web application framework Complexity grows with the
project 15 / 28 Iacopo Spalletti - @yakkys
Starlette The little ASGI framework that shines 16 / 28
Iacopo Spalletti - @yakkys
Starlette The little ASGI framework that shines Microservice oriented 17
/ 28 Iacopo Spalletti - @yakkys
Some code now? 18 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
19 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves 20 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves Each Shelf belongs to an Organization 21 / 28 Iacopo Spalletti - @yakkys
The specs A RESTful backend to handle a multi-tenant warehouse.
Warehouse is divided in Shelves Each Shelf belongs to an Organization Each Shelf can hold a given set of Boxes 22 / 28 Iacopo Spalletti - @yakkys
Django https://github.com/yakky/3frameworks-django 23 / 28 Iacopo Spalletti - @yakkys
Flask https://github.com/yakky/3frameworks-flask 24 / 28 Iacopo Spalletti - @yakkys
Starlette https://github.com/yakky/3frameworks-starlette 25 / 28 Iacopo Spalletti - @yakkys
26 / 28 Iacopo Spalletti - @yakkys
Questions? 27 / 28 Iacopo Spalletti - @yakkys
Thanks @yakks @
[email protected]
https://keybase.io/yakky https://github.com/yakky https://speakerdeck.com/yakky 28 / 28 Iacopo
Spalletti - @yakkys