SOAP client return seconds to end event.
How can I get from this seconds date in format "yyy-mm-dd hh:ii:ss"
A quick example (add 50000 seconds from now with datetime.timedelta):
>>> import datetime >>> time_now = datetime.datetime.now() >>> time_event = time_now + datetime.timedelta(seconds=50000) >>> time_event.strftime("%Y-%m-%d %H:%M:%S") '2010-05-08 12:07:05'
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
448 times
active