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

20 lines
288 B
Python
Raw Normal View History

2005-10-21 08:39:57 +00:00
#!/usr/bin/python
from evolutioncells import *
2005-10-21 08:39:57 +00:00
# Constants
SMSLEN = 160
# Get contacts
2005-10-21 08:39:57 +00:00
cells = EvolutionCells()
contacts = cells.getContacts()
# Fill contact list and the combobox
contactlist = contacts.keys()
contactlist.sort()
for k in contactlist:
print k + " " + contacts[k]