Monday, July 31, 2023

Re: Logout time

Thank you all.

 Thank you # madhusudan (I got on idea through you shared the code)

On Fri, Jul 28, 2023, 8:16 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/CAMCU6CpehgV_0BzNKSRFLZbgTb0z3hSkXQWmSEfK1v11-_oLPA%40mail.gmail.com.

No comments:

Post a Comment