neingeist
/
smstool
Archived
1
0
Fork 0
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

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]