Тёмный

Building A Simple REST API with FastAPI in Python 

NeuralNine
Подписаться 376 тыс.
Просмотров 47 тыс.
50% 1

Today we learn how to quickly and easily build a simple REST API in Python using FastAPI.
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚
🐍 The Python Bible Book: www.neuralnine...
💻 The Algorithm Bible Book: www.neuralnine...
👕 Programming Merch: www.neuralnine...
🌐 Social Media & Contact 🌐
📱 Website: www.neuralnine...
📷 Instagram: / neuralnine
🐦 Twitter: / neuralnine
🤵 LinkedIn: / neuralnine
📁 GitHub: github.com/Neu...
🎙 Discord: / discord
🎵 Outro Music From: www.bensound.com/

Опубликовано:

 

20 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@user-zlcksu4asdv
@user-zlcksu4asdv 2 года назад
Man, exactly what I was looking for. Implemented what I wanted in 5 minutes "while" watching your video! Thanks heaps!
@AnmolWanderer
@AnmolWanderer Год назад
What is your job role ?
@andrewmenshicov2696
@andrewmenshicov2696 2 года назад
i liked the tutorial but i think some of the code coulda been more thought through, like adding proper guard clauses, doctsrings and less ugly id usage 😅😅
@jacobwilsonmwale1674
@jacobwilsonmwale1674 7 месяцев назад
amazing tutorial👏👏. It has helped me understand a lot about fastapi. cheers mate🥂
@apraveena
@apraveena Год назад
Great tutorial, Thank you so much. I feel so confident in REST API now :)
@pedromiranda3148
@pedromiranda3148 2 года назад
I there!!! Great videos and great work. Just dropping suggestion of similar video with Django Rest library
@hfrog713
@hfrog713 Год назад
is that a chrome extension for your json viewing?
@buixuanhung8273
@buixuanhung8273 2 года назад
i see your json file has been changed when you do add_person() part. I think you should change the code where you call people, you have to change it to people["people"] .
@Hanson-e4m
@Hanson-e4m Год назад
I believe that you didn't consider problem with ID after deletion. If you remove something from the middle you will get bad indexes. Anyway thx for this video I find it's really useful.
@FreakyStyleytobby
@FreakyStyleytobby 2 года назад
Great tutorial man, im grateful for your work here. Really concise vid.
@Sam-tg4ii
@Sam-tg4ii Год назад
Thanks for the great explanation. I have one question. Imagine I have the data and the API code on a raspberry pi as a server. How can I give a client access to it over the internet? I mean, I need the client to be able for example to fetch data (get) either using the header method or preferrably the FastAPI's documentation interface that you showed here. Thanks
@gorge9774
@gorge9774 2 года назад
you're reading in my mind🤩
@hfrog713
@hfrog713 11 месяцев назад
does anyone know if there is a way to take the ID out of the sample when you "Try It out" since we are not assigning it back. I find it pretty confusing.
@hfrog713
@hfrog713 Год назад
Also, for everyone.... Is there not a more efficient way of doing this? def search_provider(accepting: Optional[int] = Query(None, title="Accepting", description="Is the Doctor accepting new patients?"), gender: Optional[str] = Query(None, title="Gender", description="Gender of the Doctor")): accepting_providers = [p for p in providers if accepting.lower() == p['accepting']] if gender is None: if accepting is None: return providers else: return accepting_providers else: gendered_providers = [p for p in providers if gender.lower() in p['gender']] if accepting is None: return gendered_providers else: combined_condition = [p for p in accepting_providers if p in gendered_providers]
@vikashvashishat4011
@vikashvashishat4011 2 года назад
Hi! can you plz help to use postgres for data for the same
@freepythoncode
@freepythoncode Год назад
Thank you so much 🙂❤
@gx3mz
@gx3mz 2 года назад
How about of make this api asynchronous? Is there any video you could recommend?
@kobakoba321
@kobakoba321 2 года назад
Read about graphene-python or ariadne graphql. Both are asynchronous but they are using GraphQL not REST
@pepecopter
@pepecopter Год назад
thanks that was great!
@RohitSaini-t4r
@RohitSaini-t4r 11 месяцев назад
your intro is nice
@sushmita3537
@sushmita3537 Год назад
just in case anyone's getting a TypeError: Object of type Person is not JSON serializable at add_person(), you need to do this json.dump(dict(people), f)
@MorrasAI
@MorrasAI 2 года назад
Dude this was fantastic ! Great Job.
@jairajsahgal5062
@jairajsahgal5062 2 года назад
Thank you
@TheJackal917
@TheJackal917 2 года назад
Why Python's so slow?
@blazefirer
@blazefirer 2 года назад
its an interpreted language not compiled and there is threading but its kinda fake and there is not true concurrency in python
@rabibasukala7816
@rabibasukala7816 2 года назад
bruh
@ambivert_sigma_motivation
@ambivert_sigma_motivation 22 дня назад
Aw$m :)
@kavitharajni8962
@kavitharajni8962 2 года назад
M
@disrael2101
@disrael2101 2 года назад
Make it with an actual project please
@jairajsahgal5062
@jairajsahgal5062 2 года назад
You can make this a project by taking a date from the user and returning interesting facts about that date.
@sportriot7440
@sportriot7440 2 года назад
Are you from Israel
@binkuspinkus8400
@binkuspinkus8400 2 года назад
First!
@Nicolas_Rangel
@Nicolas_Rangel Год назад
Fix for add_person(): ... people.append(new_person) people_write = {"people": people} with open("people.json", "w") as f: json.dump(people_write, f)
Далее
Multiplayer Tic-Tac-Toe Game in Python
28:14
Просмотров 33 тыс.
How to Use FastAPI: A Detailed Python Tutorial
20:38
Просмотров 247 тыс.
13+ 2 серия
8:17
Просмотров 281 тыс.
Building REST APIs with Spring Boot
1:16:44
Просмотров 88 тыс.
Data Classes in Python Are The New Standard
20:34
Просмотров 67 тыс.
Python FAST API Tutorial
58:20
Просмотров 337 тыс.
Python Sockets Simply Explained
39:33
Просмотров 165 тыс.
Why You NEED To Learn FastAPI | Hands On Project
21:15
Просмотров 165 тыс.
PLEASE Use These 5 Python Decorators
20:12
Просмотров 116 тыс.