#!/usr/bin/python from datetime import datetime from ZSI.client import Binding b = Binding(url='http://localhost:8000/') t = b.today (5) # t = 2014-02-18 15:59:50.571927 conv = datetime.strptime (t, "%Y-%m-%d %H:%M:%S.%f") print "Today: %s" % conv.strftime ("%d.%m.%Y, %H:%M") print b.load ("string")