19 lines
288 B
Python
Executable file
19 lines
288 B
Python
Executable file
#!/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]
|