Metadata-Version: 2.1
Name: binotel
Version: 0.0.1
Summary: This package provides Python implementation of some Binotel api. 
Home-page: https://github.com/srostyslav/binotel
Author: Rostyslav
Author-email: rostyslav.rigroup@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Binotel package for Python language

This package provides Python implementation of some Binotel api.

## Installation

Use the `pip` command:

	$ pip install binotel

## Requirements

Binotel package tested against Python 3.8.1

## Example

```python
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)

```


