Join my free course on working with the database and models in Django: prettyprinted.com/djangodata
@soniaspirling31313 жыл бұрын
This is one of the best sites on django and coding in general. You are crystal clear and you explain everything at a great pace. Thank you for being so helpful to so many!!
@danteanditzel4 жыл бұрын
This was really helpful, I appreciate that you showed the errors that we could encounter when setting up redis and celery on a django app and guided us in solving the issues. Thank you!
@anoopkg86814 жыл бұрын
For windows users, run celery as follows, celery -A projectname worker --pool=solo -l info , if you feel difficult adding redis , try RabbitMQ, download and install Erlang, RabbitmQ and add CELERY_BROKER_URL = 'amqp://localhost' in settings.py
@pestefo3 жыл бұрын
Hi, everything goes smooth until 13:00 when celery sever is run, I got this: consumer: Cannot connect to REDIS_URL: Error while reading from socket: (54, 'Connection reset by peer').. any hints where the error could be?
@byiringirooscar3212 жыл бұрын
I had the same issues I don't know how we can fix this issues if you have found the fix please let me know
@deus92462 жыл бұрын
This was really helpful! Just one question how would this process of starting/restating the celery server be handled in the production environment?
@sohaibshafiq39623 жыл бұрын
Heroku Redis is not working for me. I got error saying, "Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused."
@Arturcru2 жыл бұрын
Did anyone fixed this?
@davidekong59472 жыл бұрын
@@Arturcru At this time, you're probably not going to see Heroku Redis as part of the add-ons (you'll likely see Heroku Data for Redis). In my case, I just used another redis add-on. Try using RedisGreen.
@Arturcru2 жыл бұрын
@@davidekong5947 thank you i did it somehow but i will remember this in future :)
@rdx864 жыл бұрын
Great tutorial! That spam email from the dating site was just hilarious! They must have some powerful email scrapers running somewhere.
@sumanbanik33394 жыл бұрын
Have been following you since months now, your videos are really helpful, could you make a video for integrating zoom/whereby in Django, I did that once using REST, was quite a task. I'm sure you can show some tricks.
@IlanHarel4 жыл бұрын
Thank you for sharing the failures and problem resolution walkthrough.
@pratikdjango82083 жыл бұрын
Thanks Anthony !! Well explained Mate
@yahyakhan-rr9ei2 жыл бұрын
One of the best video on this topic
@MohammedAbuObaid3 жыл бұрын
Nice one Anthony! Really good video to get started with Celery in Django Thanks
@yajantbhawsar24815 жыл бұрын
Hello Anthony, could you please make a video on, "Integrating Google calendar" in python Django, and creating the events on it. Their are not much resources or tutorials available for it. We will be so glad to have one from you. Thanks in advance.
@prettyprinted5 жыл бұрын
That's a good idea. I'll look into it.
@tech-talks-with-ali4 жыл бұрын
Thanks for your video, do you have more complex videos like periodic tasks ?
@hoseaochieng53554 жыл бұрын
This video helped me alot. Thumbs up!
@juanjosemartinromero7144 жыл бұрын
Great! Thank you very much. Including those usual mistakes we make that allow you to learn deeply
@sanyammittal29434 жыл бұрын
[2020-07-16 23:52:45,251: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused. Trying again in 8.00 seconds... (4/100) getting this error whenever I run Celery server Please Help
@yokeshm51754 жыл бұрын
In settings.py, instead of CELERY_BROKER_URL try using BROKER_URL
@wesleybarnes53764 жыл бұрын
New to this environment, so is Celery the go to for Django to do all my backend tasks and scripts basically, for example: *Running daily reports on sales, *tasks that request user reviews via automated emails, etc? Thanks for the video
@pratikt0074 жыл бұрын
When i create huroku redis free so It will ask credit card information
@prota2753 жыл бұрын
why do you use pipenv instead of regular venv btw?
@andrewminhnguyen94464 жыл бұрын
Thanks for this video! Took me a while to find an up-to-date Django/Celery/Heroku tutorial, and I got lucky with yours!
@prettyprinted4 жыл бұрын
Glad you liked the video!
@pravegshrestha26104 жыл бұрын
Hi there, Here, we manually run the celery worker on the command line, but when we deploy our app on the server, then how can we run the celery worker for those tasks?
@TheJonhjonhz Жыл бұрын
Nice video man 🎉
@phandinh12415 жыл бұрын
Thank for your sharing, do you know how to run a Celery worker on Google cloud?
@codewithfongoh3 жыл бұрын
Thank you for this. Great tutorial.
@kona78054 жыл бұрын
I have a project with a Model that already had a TimeField set. Is it possible to use Celery to send a daily email based on that TimeField? Or maybe a notification in the website?
@NiM444 жыл бұрын
Simple and really useful , thanks mate
@arielmontes64044 жыл бұрын
I'm geting an error when using delay() from Models. => 'NoneType' object has no attribute 'delay'
@arielmontes64044 жыл бұрын
I was looking for information. Celery does not appear to guarantee compatibility with Windows in asynchronous operations.
@arielmontes64044 жыл бұрын
FIXED! In the file CELERY.PY ... os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'main.settings') os.environ.setdefault('FORKED_BY_MULTIPROCESSING', '1')
@michaels82974 жыл бұрын
Hello, could anyone explain why celery is useful over threading? On my flask app I have the user set some sensor ranges for a few different sensor values. Tried using a while loop and realized I couldnt return data to the client side since the while loop was infinite and I have since found myself looking up celery and threading. Would setting up some threads (with different variable names for each thread) be better than celery for this case?
@leandrocosta42835 жыл бұрын
Hello Anthony, I just got to know your channel and I'm loving the videos. do an example of crud with Svelte using Django rest I believe would be a success!
@deepanshuaggarwal70424 жыл бұрын
is it necessary to use HEROKU ?
@michaels82974 жыл бұрын
A point of confusion I have with this is what if there are multiple users using your website and they all are using the route with this task queue. Does each persons task get run immediately on their browser or does the task wait in the queue until its turn to execute
@samarthgodase10114 жыл бұрын
can i schedule emails with celery to send at particular time
@pitupipitu3 жыл бұрын
Thank you, very clear explanation and to the point!
@cassiosalvador79614 жыл бұрын
Another extremely helpful video, thank you!
@katekatics Жыл бұрын
Very helpful! Thanks a lot 🙏
@99phenomenon2 жыл бұрын
full --heroku!
@talanky3 жыл бұрын
Really helpful thanks!
@amitborkar28925 жыл бұрын
Bro should i use Django in backend for my desktop electron js application?
4 жыл бұрын
Thank you very much! This took me a while I was like but I even install Linux in a partition of my drive because new celery doesn't have support for windows. Regards!
@nehat7865 жыл бұрын
Amazing video after long time.
@nurkanatkhametov62254 жыл бұрын
Is there is issue with sending email from instance of celery on Windows? Why are you using ubuntu terminal for running celery?
@shamsow4 жыл бұрын
According to the Celery docs, Windows is not supported.
@unkownknown71564 жыл бұрын
@@shamsow so what can be used if not celery
@oops55955 жыл бұрын
Hey man, nice video but can you schedule the celery to run on particular time))) and dockerizing them would be COOOOOOOOOL AND HOT )))
@Furyki4 жыл бұрын
redis broker is working and the task is being executed but not succeeding, though it keeps on receiving the task that it needs to execute, im using the vscode terminal and im running on windows, should i use the linux terminal in order for this to work properly ? , if you can help me then tnx in advance ur tutorial is still very helpful.
@lonterel47044 жыл бұрын
Same problem
@vazcaino3 жыл бұрын
Hello my friends. Great video tutorial. I have a problem here. When I have to send 1 e-mail per request it works perfectly, but if you have 5 e-mails, for example, there is a connection error with SMTP. I believe that this error is due to the competition between tasks, that is, it is trying to send everything at the same time. Is there anything that can solve this?
@susamamaity12574 жыл бұрын
:even though I installed redis still it is showing:ImportError: Missing redis library (pip install redis). Please help me out. I am stuck with this.
@sickdarth4 жыл бұрын
Amazing video, thanks a lot!
@tz6075 жыл бұрын
How to setup celery with nginx and gunicorn !??
@ConsuelaSpongey7985 жыл бұрын
Awesome vid man!
@alekseykonotop17455 жыл бұрын
Thanks a lot for this guide! Liked and Subscribed!
@samuelfelipecastrofernande30872 жыл бұрын
Thank you very much!!
@rangabharath42535 жыл бұрын
Awesome anthony. Could you please make a tutorial on order management system using django making use of flipkart,snapdeal,amazon seller apis. Thank you so much for the awesome tutorials.
@lakshaynz4 жыл бұрын
wowowowow hold up right there - how did you get a virtual environment so oquickly???????
@martinv11235 жыл бұрын
Useful as always!
@MiaElliottPhotos5 жыл бұрын
Im building an app in which user has to provide some data and in return he/she will get an email with an attachment that contains provided data. I am expecting large traffic on my website. Would Celery make any sense in this situation?
@prettyprinted5 жыл бұрын
Yeah, you can use Celery to handle sending the email.
@unkownknown71564 жыл бұрын
Hello did you done your project as you mentioned above @Mia Elliott
@MiaElliottPhotos4 жыл бұрын
Project was canceled and as far as I remember Celery wasn't the way to go
@Vickersyt5 жыл бұрын
Hi Anthony, thanks for vid! Could you please do a tutorial on celery beat with django? For example some simple periodic web scraping with saving to db
@nehat7865 жыл бұрын
This would be great brother. We need more django videos like this
@prettyprinted5 жыл бұрын
I'll look into Celery Beat.
@Vickersyt5 жыл бұрын
@@prettyprinted Thats great thank you so much Sir!
@thezquad4 жыл бұрын
Hey Antony Can you do a tutorial on celery beat with django? Maybe even the same send email task.
@prettyprinted4 жыл бұрын
I'll look into it.
@hamedmatari2577 Жыл бұрын
now I can say, I understood celery
@prettyprinted Жыл бұрын
Glad the video helped!
@md.akib51245 жыл бұрын
awesome as always
@amansingh-os9gd4 жыл бұрын
Hey can you please help me with an issue relating to above ? Really like your videos btw
@danielkamau84363 жыл бұрын
good work there
@delllatitude2995 жыл бұрын
Finally , Django with something unique and one level up
@TemirlanNurmamatov5 жыл бұрын
Hi, I really like your videos! Can you please make a video on Dynamic Django Formsets? I have searched the internet for a few days, and most of the solutions are out of date (5-8 years old). I think a lot of people would be interested
@tomneeld5 жыл бұрын
Nice intro. Thanks, really helped
@sohaibshafiq39623 жыл бұрын
My Django application is running locally.
@privetabdul3 жыл бұрын
thank you!
@chandanurs75545 жыл бұрын
Thanks Anthony. I am glad that i found this video. Liked and Subscribed :-)
@MrTuzzo775 жыл бұрын
Hi, thanks for your beautiful channel. Your videos very very helpful. Can you make a video about multi thread application in Python Django? Thanks
@RealEngineer5 жыл бұрын
Great Channel!
@JaratMan3 жыл бұрын
Рахмат
@ojasio4 жыл бұрын
Sweeet :). Thanku so much.
@hemanthvatti43874 жыл бұрын
very nice..........
@sainco30365 жыл бұрын
Thanks.
@abe99934 жыл бұрын
Not usefull for me because I don't want to use my credit card information for Heroku
@enes2223 жыл бұрын
Is it wants?
@SmoothBeatbox3 жыл бұрын
@@enes222 yes
@SmoothBeatbox3 жыл бұрын
CELERY_BROKER_URL = "redis://redis:6379" CELERY_RESULT_BACKEND = "redis://redis:6379" #add this to settings
@MrYoklmn5 жыл бұрын
Finally! Finally! Thank you!
@solo80035 жыл бұрын
Nice work, we are waiting for more like this...Thank you
@АндрійПолухін-ю1ч3 жыл бұрын
A great video on Celery in Django! Thanks, Anthony :-)