In Suds, I use something like
client = suds.client.Client(url)
date_val = client.service.getDate()
and date_val is printed as
2013-11-16
If I use client.last_received()
, the raw xml gets printed as
2013-12-11-05:00
How do I get the date returned to date_val to be returned as 2013-11-16-05:00 ?
Apparently this is a known issue with suds. It finds the datetime and returns datetime.date. I couldn't figure out how to change this so I used something like the following: