Python package for Ghasedak SMS API
Project description
GhasedakSMS-python
A Python package for interacting with the GhasedakSMS web service API.
Installation
You can simply install this package with pip:
pip install ghasedak_sms
Usage
import ghasedak_sms
# Create an instance:
sms_api = ghasedak_sms.Ghasedak(baseurl="http://your_base_url/api/v1", apikey="Your APIKEY")
# Check SMS status:
response = sms_api.check_sms_status(ids=['messageId1', 'messageId2'], type='1')
print(response)
# Get account information:
response = sms_api.get_account_information()
print(response)
# Get received SMSes:
response = sms_api.get_received_smses(linenumber='xxxx', isread=False)
print(response)
# Get received SMSes with pagination:
response = sms_api.get_received_smses_paging(linenumber='xxxx', isread=False, startdate='2023-01-01', enddate='2023-01-31', pageindex=0, pagesize=10)
print(response)
# Get OTP template parameters:
response = sms_api.get_otp_template_parameters(templatename='YourTemplateName')
print(response)
# Send a single SMS:
response = sms_api.send_single_sms(message='hello, world!', receptor='09xxxxxxxxx', linenumber='xxxx', senddate='', checkid='')
print(response)
# Send a bulk SMS:
response = sms_api.send_bulk_sms(message='hello, world!', receptors=['09xxxxxxxxx', '09xxxxxxxxx'], linenumber='xxxx', senddate='', checkid='')
print(response)
# Send pair-to-pair SMS:
response = sms_api.send_pair_to_pair_sms(items=[{'message': 'hello', 'receptor': '09xxxxxxxxx', 'linenumber': 'xxxx', 'senddate': '', 'checkid': ''}], udh=False)
print(response)
# Send OTP SMS:
response = sms_api.send_otp_sms(receptor='09xxxxxxxxx', message='Your OTP message')
print(response)
License
Released under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ghasedak_sms-1.0.0.tar.gz
(7.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ghasedak_sms-1.0.0.tar.gz.
File metadata
- Download URL: ghasedak_sms-1.0.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dc0389ff7f8a34ab04adae8b80865a824d5791e9a9920f684b2967fc901aa04
|
|
| MD5 |
6bad0cd6129b98324c4658b846f2efe0
|
|
| BLAKE2b-256 |
5bf8bf5fb68e7378621315e40b22577a46e13c4d2d2dd0dfa8ee1c228ea7af12
|
File details
Details for the file ghasedak_sms-1.0.0-py3-none-any.whl.
File metadata
- Download URL: ghasedak_sms-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8440ef27086ef7cb2adb58f79d7f8330f5e62f6e7a3648878e44ca8871f0b9b1
|
|
| MD5 |
ab1ee52491e1e3393feed56c61e4e325
|
|
| BLAKE2b-256 |
5963ff0390a7bf0e1cc3060fdbee904707880a853c81a359596ebe4f694f20dc
|