8 lines
200 B
Python
Executable file
8 lines
200 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from asterisk import Sms
|
|
|
|
if __name__ == '__main__' :
|
|
sms=Sms('/var/spool/asterisk/sms/')
|
|
sms.sms_daemon('localhost',5038,'sms','6m6lTaEOTMsyM')
|
|
|