Hugo van Kemenade

Results 1204 comments of Hugo van Kemenade

Not every track has an image. What track is it happening for?

`.get_now_playing()` calls https://www.last.fm/api/show/user.getRecentTracks https://github.com/pylast/pylast/blob/5c9509dfc44714cf1f434e997d038a9ddf30bdd5/src/pylast/__init__.py#L2278 https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=Jisan09&api_key=YOUR_API_KEY&format=json Do you see image when making a raw API call to this endpoint? --- You can also add this to your Python progam: ```python import...

I would consider a PR for review, but this is my first time hearing of Maloja so I won't implement it myself. But does Maloja itself support scrobbling?

Hello, testing instructions are at https://github.com/pylast/pylast#testing So for example: ```sh python3 -m pip install -e ".[tests]" pytest ``` What exactly did you run?

Yes, it installs dependencies required for running the tests, plus also it's good practice to test against your installed package instead of one that happens to be local: * https://blog.ganssle.io/articles/2019/08/test-as-installed.html...

Let's see what's happening here. `network.get_track("Khruangbin", "Maria También")` creates a `Track` object using those strings, with no network calls. `track.get_artist()` returns an `Artist` object, created from those strings, no network...

What are the values of `s.track.artist.name` and `s.album` in this case?

Hmm, so checking the code, here's `get_album` that's being called with "Fourward" and "UKF10 - Ten Years Of UKF": ```python def get_album(self, artist, title): """ Return an Album object """...

Does it show if the user has a now playing track on their profile? For example: https://www.last.fm/user/bbcradio1 ![image](https://user-images.githubusercontent.com/1324225/97713732-e56f7380-1ac8-11eb-99a2-36104239ed78.png) And it works: ```pycon >>> import pylast >>> fm = pylast.LastFMNetwork(api_key=API_KEY, api_secret=API_SECRET)...

VCR.py sounds good. Sure, go ahead, PRs welcome!