pycallrail 0.9.0.2

Creator: railscoderz

Last updated:

Add to Cart

Description:

pycallrail 0.9.0.2

Python wrapper for the CallRail API.

Description
This library provides a Python intefrace for interacting with the Callrail API.
It allows for CRUD operations on objects and resources within your CallRail account and to integrate
with your own applications.


Installation
Install from PyPI using pip, a package manager for Python.
# Linux/macOS
python3 -m pip install pycallrail

# Windows
py -3 -m pip install pycallrail


Requirements & Dependencies

Python 3.6+
requests
ujson
python-dateutil
typeguard



Usage
import pycallrail.callrail as clrl

# init the api client

api = clrl.CallRail('your_api_key')

# list accounts associated with your api key
accounts = api.list_accounts(# optional kwargs, more info on supported kwargs at endpoint docs)

# list calls associated with your account
calls = accounts[0].list_calls(# optional kwargs, more info on supported kwargs at endpoint docs)

print(calls[0].id) # prints the id of the first call in the list

# >>> 123456789


Links & Contact

Documentation
Questions

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.