For anybody who was searching for it. The actual tutorial about sessions starts at 14:12.
@rishabhsingh3315 Жыл бұрын
Live long
@chahatbhatia21574 ай бұрын
Thanks Man!
@davidinmichael11 ай бұрын
This is a great tutorial, explains the whole concepts at once, thank you.
@amythomas37452 жыл бұрын
Thank you! I'm taking a programming bootcamp, am late with an assessment because after having all of the 'parts' for the website that I'm required to create, until watching this I just couldn't figure out how to correctly put it all together, the views, urls, etc, I finally get it! This wasn't even why I started watching it (I wanted to get a head start on the topic for Monday) but this was much more significant to me as far as actually having a chance to pass this course, I'm excited to watch the rest. thanks again!
@itsvivekshukla13 жыл бұрын
to solve the issue that you faced in last part of the video, move the statement in line no 25 (insertion part) to the last part of current if (ie. right after removal of more than 5 elems). Nice Video. Thanks.
@prettyprinted3 жыл бұрын
I'll try that out. Thanks for watching!
@HandcartRule462 жыл бұрын
Great video like always, the applicability of your tutorials is fantastic. If I may add a little tip, use constants when grabbing session data that way you ensure you didn't do a typo somewhere and will get an error in your ide. What i mean is instead of: request.session['data_field'] Then: DATA_FIELD = 'data_field' request.session[DATA_FIELD] It works great when you are dealing with a lot of session data.
@vikaskumarl37192 жыл бұрын
great video, nicely explained. Would have appreciated it even more if you had shown how the sessions are stored in DB and see what information does it store exactly.
@HandcartRule462 жыл бұрын
I'm also keen to know about this. I've been wondering if you are able to save state with class based views for individual sessions.
@brandon_wallace3 жыл бұрын
Anthony, I really like these Django videos.
@ClaytonCook123 жыл бұрын
Really great video! Will be using sessions more now that I've seen how easy it is to add and remove data.
@akhils35612 жыл бұрын
Nicely explained. if possible kindly do a video on soft deletion of data in django.
@ambaigbaig94598 ай бұрын
Pretty Printed why you didn't use orderby in order to manage the recently viewed image in the the list?
@optimuseaacademy Жыл бұрын
super tutorials, thanks man
@prettyprinted Жыл бұрын
Thanks for watching!
@AngelHernandez-ex7ji2 жыл бұрын
how long do sessions last? is there a way to limit their time ?
@matrixtoogood56012 жыл бұрын
Sessions start from 13:29
@saidtahmazov91972 жыл бұрын
Really helpful video. Subscribed! Thanks.
@MrPicklepod2 жыл бұрын
A fantastic tutorial!
@user-vv8sx2th6r Жыл бұрын
Thank you, it was realy interesting.
@developershub20246 ай бұрын
Its a great video but i have a question, suppose we have a form where we are booking lets say a hotel but we did not finish the booking process, how can we make sure that after logging back in if we are logged in we dont loose the information in our form. instead we continue where we left. Someone please help.
@chahatbhatia21574 ай бұрын
I need help with the same, did u manage to get an answer?
@ajmalbangash6928 Жыл бұрын
Products.objects.filter(pk__n=request.sessions[recently_viewed]) What is pk___n here refers to???
@prettyprinted Жыл бұрын
pk is the primary key of Products, so the product id. pk__in means that primary key matches of the items in the list request.sessions[recently_viewed]
@itspaintosee10 ай бұрын
I have the same set up (as far as I can tell). I'm using the django_session table. Which has no rows. But each time I have a new request, the session is empty. Anybody know why it's dictionary is either not being set or not being reloaded on follow up requests? Thanks
@2010sparsh Жыл бұрын
Why would u add product to session ???
@thetechtimes3 жыл бұрын
Amazing ❤️✨
@prettyprinted3 жыл бұрын
Thanks for watching!
@RainSoundsToConcentrate6 ай бұрын
Awesome :)
@timmanning93 жыл бұрын
Is session synonymous with cookies? If not, what is the difference?
@prettyprinted3 жыл бұрын
Sessions allow you to associate information with a user. A cookie is just one method of doing so. But I would say more implementation of sessions use cookies in some way.
@7s9n3 жыл бұрын
Thanks 💛
@prettyprinted3 жыл бұрын
You're welcome 😊
@AntonioSanchez-bi3nu2 жыл бұрын
Te amo.
@idobooks909 Жыл бұрын
13:28
@chamaipornphongthong3 жыл бұрын
👍👍👍👍👍👍👍
@scren20103 жыл бұрын
👍
@prettyprinted3 жыл бұрын
Thanks for watching!
@ashokkumar55812 жыл бұрын
kzbin.info/www/bejne/hF61ZqCKYtN8es0 for Sessions.