Core.rq_wantlist is a collection of function wrappers around the Discogs API for interacting with the wantlist of a given user.
# Example for usage of get_user_wantlist
get_user_wantlist(user=example_user,
username="discogspy",
page=1,
per_page=3)
# Example for add_release_to_wantlist
add_release_to_wantlist(user=example_user,
username="discogspy",
release_id=1995816,
notes="perfect album",
rating=5)
# Example for change_notes_of_a_release_from_wantlist
change_notes_of_a_release_from_wantlist(user=example_user,
username="discogspy",
release_id=1995816,
notes="one of the greatest albums of all time")
# Example for change_rating_of_a_release_from_wantlist
change_rating_of_a_release_from_wantlist(user=example_user,
username="discogspy",
release_id=1995816,
rating=5)
# Example for delete_release_from_wantlist
delete_release_from_wantlist(user=example_user,
username="discogspy",
release_id=1995816)