I am accessing my SMS messages with:
ms=droid.smsGetMessages(False, 'inbox', ['date']).result
The results are in the following format:
[{u'date': u'1416143072400'}]
How do I convert the date value to a readable format (dd/mm/yyyy)?
I am accessing my SMS messages with:
ms=droid.smsGetMessages(False, 'inbox', ['date']).result
The results are in the following format:
[{u'date': u'1416143072400'}]
How do I convert the date value to a readable format (dd/mm/yyyy)?
It looks like you're getting back seconds since the epoch times 1000..