view content/Python/timedelta.md @ 23:45f638a5faa8

add blog post about the galaxy S4 mini
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 31 Dec 2013 04:02:12 +0100
parents 4cd9b65e10e4
children 04a8afe79c59
line wrap: on
line source

Title: timedelta
Date: 2009-01-10
Lang: en

Python comes with a rich libray of classes for dealing with date and time. I was working with datetime.time objects the other day and needed to calculate the difference between to time instances. To my great surprise this isn't easily doable as Python's standard lib only has `timedelta` objects which cannot deal with pure time objects.

So I had to write my own [timedelta](http://xanthippe.dyndns.org/cgi-bin/hgwebdir.cgi/timedelta/shortlog/tip) function which takes two time instances and calculates the difference. The diff will be returned as a time instance.

The source is [publicly available from its mercurial repository](http://xanthippe.dyndns.org/hg/timedelta/shortlog/tip).