-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search returning no results #5
Comments
Hi Paul, I ran into several small issues with this package and it doesn't look like Atsuo's actively working on it (see my Pull Request from last December for example). If you can't get this to work and you're willing to try another library, I started from his work here, extended significantly to support the actions missing (particular file uploads) and released as package: https://github.com/PBorocz/raindrop-io-py. Cheers |
I believe I found the source of this issue. By using the API directly I tested the
The code currently passes an empty search parameter as an empty list
It seems the third option stopped working recently. To fix it I replaced the line here to make the request more similar to option 2 above: if args == []:
params = {"perpage": perpage, "page": page}
else:
params = {"search": json.dumps(args), "perpage": perpage, "page": page} not sure if this matches your use case exactly but hope it helps. |
I have a Python script which logs on to Raindrop and searches a collection and shows the results returned. It does this using the this library
As of today when I run this script the search I get search results returned, even though I know there are items in that collection.
I haven't changed any code on my side, so either the Raindrop API is not working with Search or this library that I am using is broken
Anyone else having issues with search results?
The text was updated successfully, but these errors were encountered: