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
91
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
540
Building real time applications with Django and Channels 2 @ DjangoCon Europe
yakky
1
560
Building real time applications with Django and Channels 2 @ PyCon Italia
yakky
0
420
Building real time applications with Django
yakky
0
520
django knocker
yakky
0
55
django CMS application - A comprehensive approach
yakky
0
42
django CMS + Channels + DRF = ♥
yakky
0
310
Liveblogging using channels
yakky
0
39
django CMS @ DUTH - Exploiting Django for a good cause
yakky
0
350
Other Decks in Programming
See All in Programming
Pinia Colada が実現するスマートな非同期処理
naokihaba
4
220
レガシーシステムにどう立ち向かうか 複雑さと理想と現実/vs-legacy
suzukihoge
14
2.2k
Kaigi on Rails 2024 〜運営の裏側〜
krpk1900
1
210
카카오페이는 어떻게 수천만 결제를 처리할까? 우아한 결제 분산락 노하우
kakao
PRO
0
110
subpath importsで始めるモック生活
10tera
0
300
Realtime API 入門
riofujimon
0
150
アジャイルを支えるテストアーキテクチャ設計/Test Architecting for Agile
goyoki
9
3.3k
よくできたテンプレート言語として TypeScript + JSX を利用する試み / Using TypeScript + JSX outside of Web Frontend #TSKaigiKansai
izumin5210
6
1.7k
シェーダーで魅せるMapLibreの動的ラスタータイル
satoshi7190
1
480
Snowflake x dbtで作るセキュアでアジャイルなデータ基盤
tsoshiro
2
520
エンジニアとして関わる要件と仕様(公開用)
murabayashi
0
290
ふかぼれ!CSSセレクターモジュール / Fukabore! CSS Selectors Module
petamoriken
0
150
Featured
See All Featured
Designing for humans not robots
tammielis
250
25k
BBQ
matthewcrist
85
9.3k
A Modern Web Designer's Workflow
chriscoyier
693
190k
How to Think Like a Performance Engineer
csswizardry
20
1.1k
Side Projects
sachag
452
42k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
Teambox: Starting and Learning
jrom
133
8.8k
Imperfection Machines: The Place of Print at Facebook
scottboms
265
13k
Unsuck your backbone
ammeep
668
57k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.8k
Scaling GitHub
holman
458
140k
VelocityConf: Rendering Performance Case Studies
addyosmani
325
24k
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