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
from raindropio import API, Collection
api = API(raidrop_access_token)
c = Collection.create(api, title="Sample collection")
print(c.title)
- Search bookmarks from Unsorted collection.
from raindropio import API, CollectionRef, Raindrop
api = API(raidrop_access_token)
page = 0
while (items:=Raindrop.search(api, collection=CollectionRef.Unsorted, page=page)):
print(page)
for item in items:
print(item.title)
page += 1
Copyright 2020 Atsuo Ishimoto
See LICENSE for detail.