How to use the pylast._Search.__init__ function in pylast

To help you get started, we’ve selected a few pylast examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github maxexcloo / LastDown / pylast.py View on Github external
def __init__(self, venue_name, country_name, network):
        
        _Search.__init__(self, "venue", {"venue": venue_name, "country": country_name}, network)
github asermax / lastfm_extension / pylast.py View on Github external
def __init__(self, venue_name, country_name, network):
        
        _Search.__init__(self, "venue", {"venue": venue_name, "country": country_name}, network)
github maxexcloo / LastDown / pylast.py View on Github external
def __init__(self, album_name, network):
        
        _Search.__init__(self, "album", {"album": album_name}, network)
github maxexcloo / LastDown / pylast.py View on Github external
def __init__(self, tag_name, network):
        
        _Search.__init__(self, "tag", {"tag": tag_name}, network)
github pylast / pylast / pylast.py View on Github external
def __init__(self, artist_name, track_title, network):

        _Search.__init__(self, "track", {"track": track_title, "artist": artist_name}, network)
github asermax / lastfm_extension / pylast.py View on Github external
def __init__(self, tag_name, network):
        
        _Search.__init__(self, "tag", {"tag": tag_name}, network)
github asermax / lastfm_extension / pylast.py View on Github external
def __init__(self, artist_name, network):
        _Search.__init__(self, "artist", {"artist": artist_name}, network)
github pylast / pylast / pylast.py View on Github external
def __init__(self, artist_name, network):
        _Search.__init__(self, "artist", {"artist": artist_name}, network)
github pylast / pylast / pylast.py View on Github external
def __init__(self, album_name, network):

        _Search.__init__(self, "album", {"album": album_name}, network)