Very helpful, I'm moving over to Quart from Flask and you've simplified database management. Will try out this way!
@Income-ko6us4 күн бұрын
I finished your course from From Zero to Flask the professional way a while back and it was amazing. I learned so much, from building templates to email verification, it was incredible. It a shame you are no longer creating Udemy courses because I would buy. Thanks from London.
@ajWLMk2o11 күн бұрын
Thank you for putting this course together. I appreciate your walkthroughs and straightforward approach!
@БельчонокОрешек-ы2н26 күн бұрын
Thanks!👌
@ZacksVerseАй бұрын
Thanks for explaining. It works when I turns on the server but after that when I hit my API it doesn't stop.
@MegaMooj2 ай бұрын
thank you for sharing
@kirubababu92555 ай бұрын
Could you share git repository link
@samueltrankvill7357 ай бұрын
This is gold mate.. When more people convert to Quart these series will blow up..
@ivanbozhko67479 ай бұрын
You are still running the tests in a sync mode cause you have only one coroutine... what the point of using async then?
@minymaker10 ай бұрын
I don’t get it, you’re still waiting for one order to finish before starting the next. Shouldn’t it be Getting order Getting order Getting order Order ready Order ready Order ready?
@fire1710211 ай бұрын
This looks amazing, still working in 2024? Thanks a lot! Subscribed!
@fromzeroedu11 ай бұрын
Yes it does! Thanks for subscribing!
@chia-chenchang3865 Жыл бұрын
It's 2023 now, and Cloud9 is still having this issue. Thanks for the solution. It works like a charm!
@pietraderdetective8953 Жыл бұрын
Hey I managed to get my Quart test up and running..all thanks to your Quart videos! It inspires me to migrate from Flask to Quart..and I have seen crazy concurrent speedup from the async framework. You rock Sir!
@fromzeroedu11 ай бұрын
Thank you!
@pietraderdetective8953 Жыл бұрын
Sir I just found your channel and it's super awesome! Liked and subscribed! I have written Flask code for a while but I'm looking for an async framework. In your opinion should I go with Quart or FastAPI?
@pypypy4228 Жыл бұрын
your explanations (including the prev video) are succinct, clear, and to the point!
@manashejmadi Жыл бұрын
Incredible. Thanks for your work
@TravelUnwindMotivate Жыл бұрын
THANK YOU!
@aleenasyed-uq8sl Жыл бұрын
kzbin.info/www/bejne/p3LJq2aVqNSBors
@aleenasyed-uq8sl Жыл бұрын
kzbin.info/www/bejne/p3LJq2aVqNSBors
@SeanMcColgandude Жыл бұрын
Looking good Jorge!
@fromzeroedu Жыл бұрын
Sean McColgan!! Thanks so much! good to hear from you buddy!
@ekcelhenrichekoumelong4457 Жыл бұрын
Is it possible to provide the app context from a fixture so that there's no need to write "async with app.app_context():" for each test?
@fromzeroedu Жыл бұрын
Since the app_context is part of Quart and not pytest, I think it'd be tricky, but something that we can explore.
@maxwellislin30622 жыл бұрын
many thanks
@vitor-is5od2 жыл бұрын
Is this working yet? I am trying to deploy, but I see comments saying that vercel only works with serveless functions now. So, I can't use app.run(). The error I'm getting is in importing create_app(). Your tutorial is the only one I found with create_app() factory, so I will try to use
@fromzeroedu2 жыл бұрын
Haven't tried it lately, but I will do so next week. Thanks for flagging!
@vitor-is5od2 жыл бұрын
@@fromzeroedu It will crash :(. I had deployed an flask app there, and it works five minutes (or less xD). I think you can deploy only api's, in a 'serveless' way. Don't see this to be honest, but seems like something cool, because of the low cost
@fromzeroedu Жыл бұрын
I just tried again and it works perfectly fine with no crashes.
@johnc52582 жыл бұрын
this is immense. thanks for the effort. im keen to learn docker now (despite knowing about it for a few months)
@fromzeroedu2 жыл бұрын
Great to hear!
@johntherevelator8282 жыл бұрын
Thanks for the video, yet you do not really answer the question. Maybe change the name for "How to use coroutine and task?".
@stephanienwankwo86372 жыл бұрын
Ssh-keygen -t rsa-C What next? Should it be our username or email
@MrZyman2 жыл бұрын
Wow! This is pure gold!
@lu1-tee2 жыл бұрын
OMG this is gold! Thanks for doing this!
@RuslanSkiraUkraine2 жыл бұрын
Awesome very short and clear. Thank you.
@kazeokaburagi44642 жыл бұрын
git add . not working what to do
@nischalsehrawat21302 жыл бұрын
Tasks don't need to be awaited in order to run them.
@lu1-tee2 жыл бұрын
This is awesome!
@supermalavox2 жыл бұрын
Good morning! Why didn't you use slicing to reverse the list, stepping through it backwards while adding the result to the other list? Thanks! Oh, another thing: thanks for talking about PythonAnywhere. I liked the fact that it is screen reader-friendly, so a blind/visually-impaired user can check the code and output easily!
@sam_triesit3 жыл бұрын
Amazing, thank you!
@fromzeroedu2 жыл бұрын
Glad you liked it!
@Tntpker3 жыл бұрын
Small error at 2:52: scheduling a task does run the coroutine. But await is indeed needed to eventually get the coroutine result.
@fromzeroedu2 жыл бұрын
Thanks for the correction!
@LuisFranciscoAguilar3 жыл бұрын
Great video, easy explained. THANKS!
@OhMeshh3 жыл бұрын
I feel like this is the first video where its explained so clearly thanks!
@fromzeroedu2 жыл бұрын
Happy to hear that!
@daddyallu15423 жыл бұрын
Thank you sir ❤️
@fuad4713 жыл бұрын
This is how it supposed to be to run asynchronously async def waiter(): tasks=[] tasks.append(asyncio.create_task(cook('pasta', 4))) tasks.append(asyncio.create_task(cook('coban salati', 2))) tasks.append(asyncio.create_task(cook('baliq', 6))) await asyncio.gather(*tasks) async def cook (order: str, timeto: int): print(f'getting {order} order') await asyncio.sleep(timeto) print(order, 'ready') start=time.time() asyncio.run(waiter()) print(time.time()-start)
@jakkulasaiteja12483 жыл бұрын
Is this python 3 version
@paramatinnovation55393 жыл бұрын
lolll
@paramatinnovation55393 жыл бұрын
,,l,
@justinjose66193 жыл бұрын
Clear explanation. Thank you
@andrewpagan87083 жыл бұрын
love the videos!
@SA-oj3bo3 жыл бұрын
Hope you could offer more tutorials about asyncio in the future! How to use them with TCP servers for example. Thx.
@SA-oj3bo3 жыл бұрын
The example with or without async works exactly the same no? Even with time.sleep or asyncio.sleep it works the same? For me this is a confusing example because the output and the timing is in the 3 cases the same. What the purpose of this example? What should we learn by this example? Thx.
@santhanakrishnan28773 жыл бұрын
No docker file in Github repo. :)
@fromzeroedu3 жыл бұрын
Actually the code is here with a Dockerfile: github.com/fromzeroedu/flask_blog
@Avico783 жыл бұрын
In case we use some orm like sqlalchemy,the table is bound to pyadnitc model,will alembic migrate the pyadnitc model as well? otherwise it will be meaningless right?
@shengelenge3 жыл бұрын
So simple and easy. Thanks!
@psychedelictacos91183 жыл бұрын
Thankyou I was watching other vids on KZbin and their commands did not work for some reason this videos instructions worked perfectly!