Metadata-Version: 2.1
Name: python-raindropio
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/atsuoishimoto/python-raindropio
Author: Atsuo Ishimoto
License: MIT
Project-URL: Source, https://github.com/atsuoishimoto/pastecat
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: python-dateutil
Requires-Dist: python-dotenv
Provides-Extra: dev
Requires-Dist: wheel ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: autoflake ; extra == 'dev'

# python-raindropio

Python wrapper for [Raindrop.io API](https://developer.raindrop.io/).

This library is in the early stage of development.

## Requirements


- Requires Python 3.7 or later.


## Install

pip3 install python-raindropio


## Usage

```python

from raindropio.api import API, CollectionRef, Raindrop
api = API(raidrop-access-token)

while (items:=Raindrop.search(api)):
    for item in items:
        print(item.title)

```


## License

Copyright 2020 Atsuo Ishimoto

See LICENSE for detail.


