Metadata-Version: 2.1
Name: pytinybeans
Version: 1.1
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
Description: # 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!'
        
        ```
        
        ## Notes
        
        This isn't a wonderful example of API design, and there's some weirdness like using `.format()` in some places vs old style string replacement in others. In my defense, I was extremely sleep deprived, but it's functional :)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
