Friday, July 28, 2023

Re: Logout time

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 
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`

Reuben Sunday

On Fri, Jul 28, 2023 at 3:46 PM Madhusudhan Reddy <msreddy.gone@gmail.com> 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 <prashanthpatelc@gmail.com> 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 django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMCU6Cpe32Pcs5PAmbx8LDcJzqqPwuhJVzrz%2B%3D67-tEMBychOw%40mail.gmail.com.


--
Best regards,
Madhusudhan
+91 90007 79457


--
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 django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFwQctLwNxagOX-QKVUdp58gk4px0M_qftqU3rnHayGaJ9BjAw%40mail.gmail.com.

--
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 django-users+unsubscribe@googlegroups.com.
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.

No comments:

Post a Comment