Closed flyingrub closed 8 years ago
i think name should be replaced by title. Why don't you use the soundcloud python wrapper its way more easier to code with it :)
https://github.com/soundcloud/soundcloud-python example of use here : https://github.com/flyingrub/scdl
Bumping this issue. Can't see/play my liked songs :(
As the error message suggests, there is a list in self.backend.remote_get_user_liked()
. I have not looked at the code extensively but a very quick and dirty fix ist just to add this in library.py
:
def list_liked(self):
vfs_list = collections.OrderedDict()
for data in self.backend.remote.get_user_liked():
if type(data) == list:
continue
...
This is working for me but it would be better to find out why there is an empty list in the result set of self.backend.remote.get_user_liked()
in the first place.
Bump
Bump! This is still an issue, thanks for the workaround, works for me as well!
bump
Fixed by #69