>From my observation, setting 25000 or 5 just limits the length of the
returned artists_loop but doesn't affect indexList or count at all. I
still see the same result, regardless of whether I include the role_id
tag or don't:

Code:
--------------------
    >>> query_album_artists = 
'{"id":1,"method":"slim.request","params":["",["artists",0,5,"role:ALBUMARTIST","tags:CCZs"]]}'
  >>> query_all_artists = 
'{"id":1,"method":"slim.request","params":["",["artists",0,5,"tags:CCZs"]]}'
  >>> requests.post(url=url,data=query_album_artists).json()['result']['count']
  1845
  >>> requests.post(url=url,data=query_all_artists).json()['result']['count']
  1845
  >>> index_album_artists = 
requests.post(url=url,data=query_album_artists).json()['result']['indexList']
  >>> index_all_artists = 
requests.post(url=url,data=query_all_artists).json()['result']['indexList']
  >>> index_all_artists == index_album_artists
  True
  
--------------------


------------------------------------------------------------------------
Manul's Profile: http://forums.slimdevices.com/member.php?userid=68932
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to