1 2 import telephone 3 telephone.dial('017337330') # so easy
You can hang up by... guess it...
1 telephone.hang_up()
You can combine this with the contacts module to search and dial
1 2 import contacts, telephone 3 name = 'korakot' 4 cont = contacts.open().find(name)[0] 5 number = cont.find('mobile_number')[0].value 6 telephone.dial(number)