Tagged Questions

19
votes
6answers
21k views

Python format timedelta to string

I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object. Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object ...
15
votes
14answers
7k views

Python timedelta in years

I need to check if some number of years have been since some date. Currently I've got timedelta from datetime module and I don't know how to convert it to years.
7
votes
4answers
3k views

Python's timedelta: can't I just get in whatever time unit I want the value of the entire difference?

I am trying to have some clever dates since a post has been made on my site ("seconds since, hours since, weeks since, etc..") and I'm using datetime.timedelta difference between utcnow and utc dated ...
5
votes
3answers
276 views

Which of these is pythonic? and Pythonic vs. Speed

I'm new to python and just wrote this module level function: def _interval(patt): """ Converts a string pattern of the form '1y 42d 14h56m' to a timedelta object. y - years (365 days), M ...
5
votes
2answers
2k views

Comparing a time delta in python

I have a variable which is <type 'datetime.timedelta'> and I would like to compare it against certain values. Lets say d produces this datetime.timedelta value 0:00:01.782000 I would like to ...
4
votes
4answers
263 views

need the average from a list of timedelta objects

I have created a list of timedelta objects and i need to get the average of this list. when i try to do return (sum(delta_list)/(len(delta_list)-1)) i get TypeError: unsupported operand type(s) ...
3
votes
2answers
51 views

Python timedelta receiving unexpected results

In a web application I'm writing for an existing database I need to calculate the difference between now and a timestamp stored in the database (in a text field, it's stupid, I know). Here's my ...
2
votes
5answers
79 views

Python: Given a Date and Weekday find the date of the next occurrence of a given weekday

This is a bit difficult to explain, so I apologize if this doesn't make much sense. I have a program where I am doing some scheduling. One of the settings it has is to run a task weekly on certain ...
2
votes
1answer
98 views

python timedelta behaviour on subtraction

This question originated when I came upon (another thread) about python's datetime and timedelta instances I followed the update by jimgardener and read the comments by eyquem ,and tried out some ...
2
votes
2answers
2k views

Missing datetime.timedelta.to_seconds() -> float in Python?

I understand that seconds and microseconds are probably represented separately in datetime.timedelta for efficiency reasons, but I just wrote this simple function: def to_seconds_float(timedelta): ...
1
vote
2answers
167 views

Python, datetime “time gap” percentage

Assume I have these datatime variables: start_time, end_time, current_time I would like to know how much time left as percentage by checking current_time and the time delta between start_time and ...
1
vote
1answer
296 views

how to convert a timedelta object into a datetime object

What is the proper way to convert a timedelta object into a datetime object? I immediately think of something like datetime(0)+deltaObj but that's not very nice... isn't there a toDateTime() function ...
0
votes
5answers
415 views

Python: How to get the sum of timedelta?

Python: How to get the sum of timedelta? Eg. I just got a lot of timedelta object, and now I want the sum. That's it!
0
votes
1answer
352 views

Parsing an xs:duration datatype into a Python datetime.timedelta object?

As per the title, I'm trying to parse an XML file containing an xs:duration data type. I'd like to convert that into a Python timedelta object, which I can then use in further calculations. Is there ...
0
votes
2answers
405 views

Generating a dynamic time delta: python

Here's my situation: import foo, bar, etc frequency = ["hours","days","weeks"] class geoProcessClass(): def __init__(self,geoTaskHandler,startDate,frequency,frequencyMultiple=1,*args): ...
0
votes
3answers
194 views

How to distribute proportionally dates on a scale with Python

I have a very simple charting component which takes integer on the x/y axis. My problem is that I need to represent date/float on this chart. So I though I could distribute proportionally dates on a ...