FAST and MODERN Python API with FastAPI | FastAPI tutorial

preview_player
Показать описание
The Python web space has been unchained. With the sunsetting of Python 2, frameworks are able to leverage the modern features of Python to allow us to quickly build modern web APIs. One of the front-runners in this next generation of Python web frameworks is FastAPI.
You'll find first-class support for async/await, ASGI hosting, type hints, OpenAPI documentation (formerly Swagger), Pydantic model binding, and much more. If you have been wanting to check out FastAPI but haven't gotten around to it yet, this webcast will show you all you need to know to appreciate this new and exciting framework.

Audience level: Only basic Python knowledge required

Speaker:
Michael Kennedy is the host of Talk Python to Me and co-host of Python Bytes podcasts. He is also the founder of Talk Python Training and a Python Software Foundation fellow. Michael has a PyCharm course and is co-author of the book Effective PyCharm. Michael has been working in the developer field for more than 20 years and has spoken at numerous conferences.
Рекомендации по теме
Комментарии
Автор

fastAPI is the future of Python web project. Literally it is a revolution

jorge
Автор

This guy (not you Paul) makes me feel fantastic just by listening to him. Amazing

kotslike
Автор

Exciting about FASTapi!!!
Thanks for the tutorial.

perceptron
Автор

Allow me a stupid beginner question:
At 23:50 he goes and writes an endpoint that returns a dict. When he goes and visits that endpoint in the browser he receives json data.
How does that conversion happen?

GerardGRes
Автор

if you want to use the query you can use the dataclass

mcalisterAb
Автор

44:23 I think I've seen somewhere in docs that fastapi doesnt care if functions have async or not and its all async, isn't it ?

shpluk
Автор

Hello, I am middle-age junior &, seeking for the job (after I lost my small- business in COVID-19). I watched, used this video and practised it well and, added in my Github, hope to grab the attention of HR manajors.Hope you forgive me, But I did Like it. thanks for your time & efforts .

maxjokar
Автор

Is the code Micheal wrote during this video available somewhere? Would be great to go over the code and analyze it in more detail at my own pace

samutjuh
Автор

what is the future of fastapi as per your experience....i mean ..django and flask are very stable and have huge community..so from a developer pov, we have to think on various other factors rather than just async feature...

atur
Автор

Lol! Gimme a fast API professional with 4 years of experience ahaahhaah

rodrigorras
Автор

Where can I find the course Michael Kennedy created?

sharifahmed
Автор

Why don't you make videos like IntellJIdea channel ( like getting started, tutorials, getting you know the IDE )

nikhil
Автор

23:06 Paul Everitt has the goofiest serious face I've ever seen

jasperzanjani
Автор

validation = await
if validation:
raise HTTPException(status_code=409, detail="The name already exist")
team = await Team(name=team.name, slug=team.slug, created_by=team.name, updated_by=team.name).save()
return team I'm using fastApi with ormar ORM i had an error ormar.exceptions.NoMatch because the db return empty
and i want the code to save the record. Can anyone please help

kazeemadesanwo
Автор

Would be better to see the desktop larger instead to seeing the face of the two guys.

carloszenteno
Автор

Boo why not hypercorn it supports http2 and 3

kevincloinger