DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
PyS60 - ListSMS To File.txt
// Salva la lista degli SMS in un file
from time import ctime
import codecs
import inbox
box = inbox.Inbox()
msg = box.sms_messages()
f = codecs.open('E:/Others/listSMS.txt', 'w', 'utf8') # Apre il file in codifica UTF8
for i in msg:
f.write(box.address(i))
f.write('\n')
f.write(ctime(box.time(i))) # Converte i secondi in una stringa rappresentante il tempo
f.write('\n')
f.write(box.content(i))
f.write('\n')
f.close()
print 'Fine'
f = codecs.open('E:/Others/listSMS.txt', 'r', 'utf8')
print f.read()
f.close()





Comments
Snippets Manager replied on Sun, 2010/04/04 - 1:33am
Snippets Manager replied on Thu, 2006/02/09 - 1:52pm
Snippets Manager replied on Mon, 2009/01/19 - 2:58am