https://github.com/melroselabs/mlsmpputils
Code for working with SMPP
https://github.com/melroselabs/mlsmpputils
smpp sms sms-client
Last synced: 11 months ago
JSON representation
Code for working with SMPP
- Host: GitHub
- URL: https://github.com/melroselabs/mlsmpputils
- Owner: melroselabs
- License: mit
- Created: 2023-11-01T09:06:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T10:28:12.000Z (over 2 years ago)
- Last Synced: 2024-02-24T11:29:17.811Z (over 2 years ago)
- Topics: smpp, sms, sms-client
- Language: Python
- Homepage: https://melroselabs.com/developers/
- Size: 12.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mlsmpputils
Code for working with SMPP
## pySMPPSubmit.py
Compact and minimal SMS client written in Python that binds to an SMPP server and submits a message. No external dependencies.
Update first line (r,d,m variables ) with source address, destination address and message content.
Update second line (i,p,h,o) with SMPP account credentials (system ID, password, host/IP and port).
```
% python3 pySMPPSubmit.py
Message ID: 80a905d0483cd2dc7e695620ea22e7892bed
```
## pySMPPReceive.py
Compact SMS client written in Python that binds as a receive to an SMPP server and receives messages. No external dependencies.
Update system_id, password, host and port variables with SMPP account credentials (system ID, password, host/IP and port).
```
% python3 pySMPPReceive.py
Successfully bound as receiver.
Received message: 447700111222447944654716
Hello world!
Received message: 447700111222447944654716
Hello world!
```