This package provides Python implementation of some Binotel api.
Use the pip
command:
$ pip install binotel
Binotel package tested against Python 3.8.1
from binotel import Binotel
# Creating binotel object
b = Binotel('your_key', 'your secret')
# Get all incoming calls since date
calls = b.all_incoming_calls_since(1370034000)
print(calls)