Skip to main content

A simple python wrapper for sslwireless sms api.

Project description

# SslWireless Sms Api Wrapper for Python
A simple python wrapper for sslwireless sms api.

## Requirements
- requests
- xmltodict

## Usage
- Clone the repository
- Install the dependencies with `pip install -r requirements.txt` or `pip install requests xmltodict`
- Import the class and create instance to access its functions.
### Or
- Install the package with `pip install sslwireless-sms`

## Example
```python
from sslwireless_sms import SslWirelessSms

# username, password and sid provided by sslwireless
SslWirelessSms = SslWirelessSms('username', 'password', 'sid')
# You can change the api url if needed. i.e.
# SslWirelessSms.url = 'new_url'
result = SslWirelessSms.send('123456789','This is a test message.')

print(result)
```

## Output
The output will always be in JSON format.
```javascript
{
"status": "success", // or "failed"
"result": "sms sent", // or "invalid mobile or text" or "invalid mobile" or "invalid credentials"
"phone": "123456789", // number to send message
"message": "This is a test message.", // message sent
"reference_no": "randomly_generated_unique_no", // client generated reference no
"ssl_reference_no": "returned_sslwirless_reference_no", // api generated reference no
"datetime": "2018-02-07 01:35AM" // datetime of process
}
```

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

sslwireless_sms-0.0.2.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page