Basic (Very basic) implementation of the fire text API.

[https://www.firetext.co.uk/docs#sendingsms](https://www.firetext.co.uk/docs#sendingsms)

Not to be merged. This API has a limit on it at the moment that will need to be removed before it is used in anger.
This commit is contained in:
Martyn Inglis
2016-02-17 12:57:51 +00:00
parent 58ae041b64
commit 226459132a
4 changed files with 62 additions and 1 deletions

View File

@@ -41,6 +41,8 @@ class Config(object):
TWILIO_ACCOUNT_SID = os.getenv('TWILIO_ACCOUNT_SID')
TWILIO_AUTH_TOKEN = os.getenv('TWILIO_AUTH_TOKEN')
TWILIO_NUMBER = os.getenv('TWILIO_NUMBER')
FIRETEXT_NUMBER = os.getenv('FIRETEXT_NUMBER')
FIRETEXT_API_KEY = os.getenv("FIRETEXT_API_KEY")
class Development(Config):