Archived
1
0
Fork 0
This repository has been archived on 2020-10-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
smstool/listnumbers.py

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]