Skip to main content

No project description provided

Project description

python-raindropio

Python wrapper for Raindrop.io API.

This library is in the early stage of development.

Requirements

  • Requires Python 3.7 or later.

Install

pip3 install python-raindropio

Usage

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

License

Copyright 2020 Atsuo Ishimoto

See LICENSE for detail.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

python_raindropio-0.0.4-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page