Python client for Phaxio v2 API
Project description
Phaxio
A Python module for interacting with the Phaxio API.
Installation
Via pip:
$ pip install phaxio
Full Documentation
Usage
Send a fax to multiple people using HTML message:
from phaxio import PhaxioApi
api = PhaxioApi(key, secret)
response = api.Fax.send(to=['4141234567', '5141234567', '6151234567'],
files='/path/to/supported/file.pdf')
print(response.data.id)
The full set of Phaxio APIs is available and split into functional groups:
api.Fax api.PhoneNumber api.PhaxCode api.Account api.Countries
Generally, each supported method takes keyword arguments with the exact same names of the API method parameters as they’re described in the Phaxio documentation.
See the tests for additional examples, or the full documentation.
Error Handling
Errors will cause an ApiException, with fields for HTTP status code, reponse headers, and json response data in the body.
Testing
export API_KEY="MY_API_KEY" export API_SECRET="MY_API_SECRET" python setup.py test
Contributing
Making API changes
Make changes to spec/api.yaml
Run make swagger-generate
Make changes to phaxio/api.py as necessary
Update documentation if necessary
docs/source/phaxio.rst will probably not require updates unless it’s a very big change
docs/source/models.rst will require updates only if there are new model types
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 phaxio-0.3.tar.gz
.
File metadata
- Download URL: phaxio-0.3.tar.gz
- Upload date:
- Size: 32.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2f316513249233cb2b84d17baa4c8424012833bdc9d78f555bf42249c45b5cf |
|
MD5 | d937fa7a0f65c8c35004d9718753d10a |
|
BLAKE2b-256 | 29a89e2aafe668d9126173c6f8c97acb5b607140a0a8e59ae6becdbb37c87265 |