I could barely understand what you meant, I believe you're looking for a way to set how to set a session cookie age, if that is the case, see SESSION_COOKIE_AGE <https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-SESSION_COOKIE_AGE>
If that is not the case, note that you also have `last_login` and `last_logout` object which is available to you when using `django.contrib.auth` <https://reubensunday.com/#contact> *Reuben Sunday* Contact For Further Assistance <https://reubensunday.com/#contact> On Fri, Jul 28, 2023 at 3:46 PM Madhusudhan Reddy <[email protected]> wrote: > To get Logout time based on login time, > > login time = some thing > > logout time = login time + 8 hours > > use datetime timedelta module in python, > > >>> CODE <<< > from datetime import datetime, timedelta > login_time = datetime.now() > logout_time = login_time + timedelta(hours=8) > >>> CODE <<< > > > > > > > > > > On Fri, 28 Jul 2023 at 20:05, Prashanth Patelc <[email protected]> > wrote: > >> Hi all, >> >> How to get logout time based on login time in python? >> >> I'm storing hour in one column >> Eg ; hour >> 8 >> Based on 8 Calculate logout time >> >> My login time 10:00:00 >> >> I need 6: 00:00 (based 8) >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/CAMCU6Cpe32Pcs5PAmbx8LDcJzqqPwuhJVzrz%2B%3D67-tEMBychOw%40mail.gmail.com >> <https://groups.google.com/d/msgid/django-users/CAMCU6Cpe32Pcs5PAmbx8LDcJzqqPwuhJVzrz%2B%3D67-tEMBychOw%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> > > > -- > Best regards, > Madhusudhan > +91 90007 79457 > Gmail <[email protected]> | LinkedIn > <https://www.linkedin.com/in/msreddygone/> > > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAFwQctLwNxagOX-QKVUdp58gk4px0M_qftqU3rnHayGaJ9BjAw%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAFwQctLwNxagOX-QKVUdp58gk4px0M_qftqU3rnHayGaJ9BjAw%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAPUD46vOiqqe0YTBeWG-vDS8ng-8TR%3D2JG5j_d0vFmeDM36-8g%40mail.gmail.com.

