A Django app to send sms with skebby
Project description
django-skebby
===================
A simple Django app to send sms by Skebby.
Usage
-----
In settings.py:
SKEBBY_USERNAME = 'yourskebbyusername'
SKEBBY_PASSWORD = 'yourskebbypassword'
# if SSL does not work
#SKEBBY_URL = "http://gateway.skebby.it/api/send/smseasy/advanced/http.php"
# If you have *requested and obtained* the raise to 100000 messages per request
#SKEBBY_MAX_RECIPIENTS = 100000
In your code:
from django_skebby.utils import Sms, skebby_credit_left
# greetings to some people
template = "Good {{ festivity }}{% if friend %} {{ friend }}{% endif %}!"
ctx = {'festivity': 'birthday'}
sms = Sms(template, ["39123456789", "3912346788"], sender_string="Your friend", ctx=ctx)
ret = sms.send()
# Skebby has a recipient limit of 50000 numbers that can be raised to 100000 on request
# The app will take care of itself depending on settings.SKEBBY_MAX_RECIPIENTS
failed_requests = [r for r in ret['body'] if r['error']]
if failed_requests:
print "some errors!"
# to a special friend
ctx = {'festivity': birthday, 'friend': 'Doge'}
r = sms.send_single(ctx, "3912345679")
if r['error']:
print "failed to greet :( %s" % (r['message'])
# check credit
credit = skebby_credit_left()
if credit['error']:
print "failed to get credit"
else:
print credit['body']
A view that returns the credit in json format is available, to enable it add the app:
INSTALLED_APPS = (
...
'django_skebby',
)
include the urls:
url(r'^skebby/', include('django_skebby.urls')),
add use it:
<script>
$.get('/skebby/credit_left/', function(data) {
console.log(data['credit_left']);
console.log(data['classic_sms']);
console.log(data['basic_sms']);
});
</script>
===================
A simple Django app to send sms by Skebby.
Usage
-----
In settings.py:
SKEBBY_USERNAME = 'yourskebbyusername'
SKEBBY_PASSWORD = 'yourskebbypassword'
# if SSL does not work
#SKEBBY_URL = "http://gateway.skebby.it/api/send/smseasy/advanced/http.php"
# If you have *requested and obtained* the raise to 100000 messages per request
#SKEBBY_MAX_RECIPIENTS = 100000
In your code:
from django_skebby.utils import Sms, skebby_credit_left
# greetings to some people
template = "Good {{ festivity }}{% if friend %} {{ friend }}{% endif %}!"
ctx = {'festivity': 'birthday'}
sms = Sms(template, ["39123456789", "3912346788"], sender_string="Your friend", ctx=ctx)
ret = sms.send()
# Skebby has a recipient limit of 50000 numbers that can be raised to 100000 on request
# The app will take care of itself depending on settings.SKEBBY_MAX_RECIPIENTS
failed_requests = [r for r in ret['body'] if r['error']]
if failed_requests:
print "some errors!"
# to a special friend
ctx = {'festivity': birthday, 'friend': 'Doge'}
r = sms.send_single(ctx, "3912345679")
if r['error']:
print "failed to greet :( %s" % (r['message'])
# check credit
credit = skebby_credit_left()
if credit['error']:
print "failed to get credit"
else:
print credit['body']
A view that returns the credit in json format is available, to enable it add the app:
INSTALLED_APPS = (
...
'django_skebby',
)
include the urls:
url(r'^skebby/', include('django_skebby.urls')),
add use it:
<script>
$.get('/skebby/credit_left/', function(data) {
console.log(data['credit_left']);
console.log(data['classic_sms']);
console.log(data['basic_sms']);
});
</script>
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
django-skebby-0.2.3.tar.gz
(5.2 kB
view details)
File details
Details for the file django-skebby-0.2.3.tar.gz
.
File metadata
- Download URL: django-skebby-0.2.3.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91ab3d075525c95c12fbf13ce2417a295ec4ba30ed92e3d019685bcb800537a1 |
|
MD5 | 418682e2516057c83117369553aba87c |
|
BLAKE2b-256 | 2c2d7013308d902427218c7b47535f53742da81c6a44b5c1188212076472541b |