Python wrapper for Raindrop.io API.
This library is in the early stage of development.
- Requires Python 3.7 or later.
pip3 install python-raindropio
You must register your application at https://app.raindrop.io/settings/integrations. In the application page, create test token to run following samples.
- Create collection
fromraindropioimportAPI, Collectionapi=API(raidrop_access_token)
c=Collection.create(api, title="Sample collection")
print(c.title)- Search bookmarks from Unsorted collection.
fromraindropioimportAPI, CollectionRef, Raindropapi=API(raidrop_access_token)
page=0while (items:=Raindrop.search(api, collection=CollectionRef.Unsorted, page=page)):
print(page)
foriteminitems:
print(item.title)
page+=1Copyright 2020 Atsuo Ishimoto
See LICENSE for detail.