This PR moves the verbose, remove_section_headers, and skip_non_songs parameters that were previously option on the search_song and search_artist methods to the Genius class itself.
Instead of adding these optional parameters to each search, it makes more sense for the user to set the values once when they create an instance of the Genius class. Of course, the parameters can be changed even after the class has been instantiated.
This PR moves the
verbose
,remove_section_headers
, andskip_non_songs
parameters that were previously option on thesearch_song
andsearch_artist
methods to theGenius
class itself.Instead of adding these optional parameters to each search, it makes more sense for the user to set the values once when they create an instance of the
Genius
class. Of course, the parameters can be changed even after the class has been instantiated.