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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_raindropio-0.0.4-py3-none-any.whl.
File metadata
- Download URL: python_raindropio-0.0.4-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4880928e7b314cc7eb1880bab260af7f4fa5e56cb95777c0e925e5bffe57f927
|
|
| MD5 |
43a15e5046558fffc1b4620d646580b4
|
|
| BLAKE2b-256 |
e26afa562b8a1d6080129ecc82620bd55078b9be236cc4aca49b29f5c2e214a6
|