You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
288 B
Python
20 lines
288 B
Python
#!/usr/bin/python
|
|
|
|
from evolutioncells import *
|
|
|
|
# Constants
|
|
|
|
SMSLEN = 160
|
|
|
|
# Get contacts
|
|
|
|
cells = EvolutionCells()
|
|
contacts = cells.getContacts()
|
|
|
|
# Fill contact list and the combobox
|
|
|
|
contactlist = contacts.keys()
|
|
contactlist.sort()
|
|
for k in contactlist:
|
|
print k + " " + contacts[k]
|