Metadata-Version: 2.1
Name: pararamio
Version: 1.0.11
Summary: Pararam Library
Home-page: https://gitlab.com/pararam-public/py-pararamio
Author: Ilya Volnistov
Author-email: i.volnistov@gaijin.team
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

Setup
-----

Setup package

    # python setup.py install

Examples
--------
```python
import pararamio
client = pararamio.Pararamio('username', 'passowrd', 'two_factor_key')
client.authenticate()
ua = client.search_user('recipient@example.com')
if len(ua) == 1:
    ua[0].send_message(text='text message')
```


