Skip to content

Froiibaad/Unofficial-Google-Music-API

 
 

Repository files navigation

gmusicapi: an unofficial API for Google Play Music

image

gmusicapi allows control of Google Music with Python.

from gmusicapi import Api
api = Api()
api.login('user@gmail.com', 'my-password')
# => True

library = api.get_all_songs()
sweet_tracks = [track for track in library if track['artist'] == 'The Cat Empire']

playlist_id = api.create_playlist('Rad muzak')
api.change_playlist(playlist_id, sweet_tracks)

gmusicapi is not supported nor endorsed by Google.

That said, it's actively maintained, and used in a bunch of cool projects:

Check out the documentation at http://unofficial-google-music-api.readthedocs.org to get started.


Copyright 2013 Simon Weber. Licensed under the 3-clause BSD. See LICENSE.

image

About

An unofficial api for Google Music.

Resources

License

Stars

Watchers

Forks

Packages

No packages published