Tagged Questions

2
votes
3answers
151 views

Print file age in seconds using Python

I need my script to download new file, if the old one is old enough. I set the maximum age of file in seconds. So that I would get back on track with my script writing I need example code, where file ...
2
votes
5answers
2k views

Python time to age

I'm trying to convert a date string into an age. The string is like: "Mon, 17 Nov 2008 01:45:32 +0200" and I need to work out how many days old it is. I have sucessfully converted the date using: ...
0
votes
1answer
64 views

Python age verification

On my join script you have to be 13+ to join. The problem is when I check it against certain dates it only works if I do it a month back. cur_time = datetime.datetime.utcnow() - ...