Man, exactly what I was looking for. Implemented what I wanted in 5 minutes "while" watching your video! Thanks heaps!
@AnmolWanderer Жыл бұрын
What is your job role ?
@jacobwilsonmwale16748 ай бұрын
amazing tutorial👏👏. It has helped me understand a lot about fastapi. cheers mate🥂
@andrewmenshicov26963 жыл бұрын
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 😅😅
@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.
@apraveena Жыл бұрын
Great tutorial, Thank you so much. I feel so confident in REST API now :)
@pedromiranda31482 жыл бұрын
I there!!! Great videos and great work. Just dropping suggestion of similar video with Django Rest library
@buixuanhung82733 жыл бұрын
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"] .
@FreakyStyleytobby2 жыл бұрын
Great tutorial man, im grateful for your work here. Really concise vid.
@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]
@gorge97743 жыл бұрын
you're reading in my mind🤩
@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
@hfrog713 Жыл бұрын
is that a chrome extension for your json viewing?
@freepythoncode Жыл бұрын
Thank you so much 🙂❤
@RohitSaini-t4r Жыл бұрын
your intro is nice
@sushmita35372 жыл бұрын
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)
@gx3mz3 жыл бұрын
How about of make this api asynchronous? Is there any video you could recommend?
@kobakoba3213 жыл бұрын
Read about graphene-python or ariadne graphql. Both are asynchronous but they are using GraphQL not REST
@vikashvashishat40112 жыл бұрын
Hi! can you plz help to use postgres for data for the same
@pepecopter Жыл бұрын
thanks that was great!
@hfrog713 Жыл бұрын
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.
@MorrasAI2 жыл бұрын
Dude this was fantastic ! Great Job.
@jairajsahgal50623 жыл бұрын
Thank you
@rabibasukala78163 жыл бұрын
bruh
@kavitharajni89623 жыл бұрын
M
@ambivert_sigma_motivationАй бұрын
Aw$m :)
@binkuspinkus84003 жыл бұрын
First!
@disrael21013 жыл бұрын
Make it with an actual project please
@jairajsahgal50623 жыл бұрын
You can make this a project by taking a date from the user and returning interesting facts about that date.
@sportriot74403 жыл бұрын
Are you from Israel
@TheJackal9173 жыл бұрын
Why Python's so slow?
@blazefirer3 жыл бұрын
its an interpreted language not compiled and there is threading but its kinda fake and there is not true concurrency in python
@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)