Metadata-Version: 2.1
Name: pytinybeans
Version: 1.0
Summary: Python library to interact with the Tinybeans API
Home-page: https://github.com/kjoconnor/pytinybeans
Author: Kevin O'Connor
Author-email: kjoconnor@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: requests

# Tinybeans API Wrapper (unofficial)
This library will allow you to interact with [Tinybeans](https://tinybeans.com/).

## Installation
`pip install pytinybeans`

## Examples
```python3
In [1]: from pytinybeans import PyTinybeans

In [2]: tb = PyTinybeans()

In [3]: tb.login('<username>', '<password>')

In [4]: print(tb.children)
[<Jane Doe 2019-10-16 00:00:00>]

In [5]: entry = tb.get_entries(tb.children[0])[0]

In [6]: entry.blobs
Out[6]:
{'o': 'https://tinybeans.com/pv/e/<url>/<url>.jpg',
 'p': 'https://tinybeans.com/pv/e/<url>/<url>.jpg'}

In [7]: entry.comments[0].text
Out[7]: 'Ok, I got this!'

```


