Drutol / MALClient

Not so small client app for Myanimelist.net - Windows 10 UWP & Android
GNU General Public License v3.0
352 stars 32 forks source link

Sort By Rating #258

Closed 123tris closed 5 years ago

123tris commented 5 years ago

One thing which bothered me on the actual website of MAL was that you can't sort your "plan to watch" list by score (the average score from user votes, aka rating). I noticed that MALClient doesn't have this functionality either. So it would be nice if a "rating" sort would be added. I don't mind programming that myself and sending a pull request, I just want to know if it would be allowed or not before I do anything.

Drutol commented 5 years ago

The problem is that MAL does not return global score for anime on your list. So It's not really possible to do in a feasible way.

123tris commented 5 years ago

I'm aware, I once programmed a small console printing the list out for myself and I ended up having to query the individual anime's from the user's list and then grab the score from there. Even when doing asynchronously it ended up taking pretty long.

So yea it is a hassle. Unfortunately, I can't find my test code but I might make a test using HTTP requests since I believe the API does contain the anime ID which you can then use to get the HTML data which might be faster than querying it through the API.