Hi,
Is there an elegant way to display the current time in another time zone?
I would like to have something with the general spirit of:
cur=<Get the current time, perhaps datetime.datetime.now()>
print "Local time ", cur
print "Pacific time ", <something like cur.tz('PST')>
print "Israeli time ", <something like cur.tz('IST')>
Any ideas?