Python wrapper for the WestFax API
Project description
A Python implementation of the WestFax API (http://westfax.com/)
Usage requires a WestFax account.
Usage
wf = new westfax.WestFax( username, password, product )
wf.add_number('555-555-5555')
wf.set_header('This is a fax')
wf.set_job_name('My fax job')
wf.set_content("Yah! I'm a fax message!")
try:
wf.send()
except westfax.FaxFail:
print "Failed to send"
Methods
add_number( number )
Adds a number to the send the fax to. Mulitple numbers can be added. send() will raise westfax.NoRecipients if no valid numbers are found.
set_billing_code( billing_code )
Sets an optional billing code to track billing for the message in the WestFax dashboard
set_job_name( name )
Sets an optional job name to identify the message in the WestFax dashboard
set_header( header )
Sets the top header on the fax. (Sent with the fax. Often a company name or subject message)
set_content( content )
Text or HTML content of the message. send() will raise westfax.MissingFaxContent if no content was added to the message.
send()
Send the message to all recipients. If WestFax returns anything other than a 200 status then send() will raise westfax.FaxFail
Exceptions
All exceptions are raised on send()
NoRecipients
Raised when no numbers were added.
MissingFaxContent
Raised when no content was added to the fax message
FaxFail
Raised when the WestFax API returns anything other than a 200 status. The error message is returned as the exception message.
TODO
verify phone number validity on add_number()
Parse the error message from WestFax to raise more useful exceptions
COPYRIGHT
Copyright (c) 2014 Constituent Voice LLC
This software is provided under the terms of the BSD License. It is free to redistribute and modify so long as this copyright notice is maintained. The software is provided “AS-IS” with no warranty. See LICENSE.txt for details.
“WestFax” is a trademark of WestFax Inc. use of this software requires valid WestFax API credentials and agreement with WestFax Inc.’s terms of service.
ConstituentVoice LLC is not affiliated or partnered with WestFax Inc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file WestFax-0.1.2.tar.gz
.
File metadata
- Download URL: WestFax-0.1.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36e38e9dae3f4b05a90d1287376eb0b804a5dcd1686279a4f851d55b6ca23401 |
|
MD5 | 9a493e10102aa093196070605c1550f4 |
|
BLAKE2b-256 | 9d76f90f87197806cdecd77567a8c70d922d2829f24a64502dade4e2a0c11e67 |