Tagged Questions
20
votes
6answers
22k 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 ...
17
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.
8
votes
4answers
3k views
Convert a timedelta to days, hours and minutes
I've got a timedelta. I want the days, hours and minutes from that - either as a tuple or a dictionary... I'm not fussed.
I must have done this a dozen times in a dozen languages over the years but ...
7
votes
1answer
2k views
Python: How do I get time from a datetime.timedelta object?
A mysql database table has a column whose datatype is time ( http://dev.mysql.com/doc/refman/5.0/en/time.html ). When the table data is accessed, Python returns the value of this column as a ...
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
282 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
1answer
680 views
How to construct a timedelta object from a simple string
I'm writing a function that needs a timedelta input to be passed in as a string. The user must enter something like "32m" or "2h32m", or even "4:13" or "5hr34m56s"... Is there a library or something ...
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
2answers
101 views
Python timedelta issue with negative values
Hi I need some help to understand why this is happening.
I have a method to track 'time remaining' in an event program:
def get_program_time_budget(self):
return ...
4
votes
4answers
247 views
Python: Difference of 2 datetimes in months [closed]
Possible Duplicate:
Best way to find the months between two dates (in python)
I would like to know how I can have the exact number of months for this difference:
date1 = ...
4
votes
4answers
277 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
52 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 ...
3
votes
4answers
128 views
How do I get days between dates
I need to remove files that are older than 14 days from a directory that stores our backups. I can get the time of an individual file by using something like this:
start = ...
3
votes
2answers
256 views
Understanding timedelta
Given the python code below, please help me understand what is happening there.
start_time = time.time()
time.sleep(42)
end_time = time.time()
uptime = end_time - start_time
human_uptime = ...
3
votes
1answer
637 views
Python 2.6.5: Divide timedelta with timedelta
I'm trying to divide one timedelta object with another to calculate a server uptime:
>>> import datetime
>>> installation_date=datetime.datetime(2010,8,01)
>>> ...
3
votes
2answers
172 views
Python time objects with more than 24 hours
I have a time out of Linux that is in hh:mm:sec, but the hh can be greater than 24 hours. So if the time is 1 day 12 hours, it would be 36:00:00. Is there a way to take this format and easily make a ...
2
votes
5answers
92 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
116 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
216 views
Python question about time spent
I would like to know that how much time a particular function has spent during the duration of the program which involves recursion, what is the best way of doing it?
Thank you
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
1answer
50 views
Python + sqlalchemy: how to process timedelta on database side?
Coding with Python, I want to insert time processed on the database side like this:
time = func.now()-datetime.timedelta(days=100)
or
time = func.current_timestamp()-datetime.timedelta(days=100)
...
1
vote
2answers
172 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
321 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
1answer
62 views
python: which file is newer & by how much time
I am trying to create a filedate comparison routine.
I suspect that the following is a rather clunky approach.
I had some difficulty finding info about timedelta's attributes or methods, or whatever ...
0
votes
1answer
101 views
Formatting timedelta object python
I wrote this little script to format a timedelta object according to my needs:
def due_format(self):
time_diff = abs((self.due - datetime.datetime.now()).total_seconds())
days = ...
0
votes
5answers
448 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
359 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
410 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
198 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 ...