Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 782 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 782 Bytes

smsified

An easy-to-use Python wrapper for SMSified.

Installation

pip install smsified

Usage

Make sure to set the following environment variables to reduce the preliminary, boilerplate setup.

export SMS_USER=smsified_username
export SMS_PASS=smsified_password

You can then import the smsified Python library.

>>> import smsified as s

# Oops, we forgot to set our username and password. No worries.
>>> s.auth('smsified_username', 'smsified_password')

# Now, set your current SMSified number.
>>> s.number('415-123-4567')

# Send a message.
>>> s.send('415-456-7890', 'Hey, you!')

# And, we can switch it up at any time.
>>> s.number('415-456-7890')
>>> s.send('415-123-4567', 'ohai')