allerter
allerter
Those Spotify playlists are actual song pages on Genius which happen to be the top result when `genius.search_song` (assuming that's the method you're using) searches for the song. Currently, this...
Yes, I think it'd be worth looking into. We've had instances before where Spotify playlists came up and had the users confused.
The `song.album` attribute will be added back in the future. Nevertheless, you can always access what Genius sends in the response if you access the response dict. For example: ```python...
Hi. Thanks for contributing to LyricsGenius. The `if song_id is None` was meant to avoid fetching the song twice in case the user had provided a song ID. But as...
For the `Song` fields, I can think of two ways: - Removing `get_full_info` altogether and update `Song` to have all fields. or: - Breaking `Song` into two types: `SearchSong` and...
Your PR is about ready. Just apply the change in the last conversation and remove the changes to `song.py`.
It would make sense that not passing `--save` would send the results to stdout.
As to what happens when you don't pass `--save`, nothing! The song is fetched and it ends there.
@fcagnola, `search_artist` only prints the progress of the search. Ultimately when the search is done, it doesn't return anything either. Currently, we don't have any contributing guidelines, but I'll make...
Reading the [Rationale](https://vcrpy.readthedocs.io/en/latest/#rationale) on VCR's docs, I think this might be a good idea. Currently, the tests take about 3:20 minutes on Travis CI and even longer on local machines.