├── .github └── FUNDING.yml ├── LICENSE ├── README.rst └── logo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: femtopixel 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ['https://www.paypal.me/jaymoulin', 'https://www.buymeacoffee.com/3Yu8ajd7W', 'https://utip.io/femtopixel', 'https://freewallet.org/id/374ad82e/ltc'] 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jay MOULIN 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | .. image:: https://raw.githubusercontent.com/jaymoulin/google-music-manager/master/logo.png 2 | :alt: logo 3 | :target: http://github.com/jaymoulin/google-music-manager 4 | 5 | ==================================== 6 | Google Music Manager - Python Daemon 7 | ==================================== 8 | 9 | .. image:: https://img.shields.io/pypi/v/google-music-manager-auth.svg 10 | :alt: PyPI version 11 | :target: https://pypi.org/project/google-music-manager-auth/ 12 | .. image:: https://img.shields.io/pypi/v/google-music-manager-downloader.svg 13 | :alt: PyPI version 14 | :target: https://pypi.org/project/google-music-manager-downloader/ 15 | .. image:: https://img.shields.io/pypi/v/google-music-manager-uploader.svg 16 | :alt: PyPI version 17 | :target: https://pypi.org/project/google-music-manager-uploader/ 18 | .. image:: https://github.com/jaymoulin/jaymoulin.github.io/raw/master/ppl.png 19 | :alt: PayPal donation 20 | :target: https://www.paypal.me/jaymoulin 21 | .. image:: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png 22 | :alt: Buy me a coffee 23 | :target: https://www.buymeacoffee.com/3Yu8ajd7W 24 | .. image:: https://badgen.net/badge/become/a%20patron/F96854 25 | :alt: Become a Patron 26 | :target: https://patreon.com/jaymoulin 27 | 28 | This program will replace former Google MusicManager to upload/download your music library to/from Google Music 29 | 30 | This work is based upon `Simon Weber's Google Music API `_. 31 | 32 | This program is now splitted in three modules: 33 | 34 | - `Google Music Manager Auth `_ 35 | 36 | .. image:: https://img.shields.io/github/release/jaymoulin/google-music-manager-auth.svg 37 | :alt: Google Music Manager Auth 38 | :target: http://github.com/jaymoulin/google-music-manager-auth/releases 39 | 40 | - `Google Music Manager Downloader `_ 41 | 42 | .. image:: https://img.shields.io/github/release/jaymoulin/google-music-manager-downloader.svg 43 | :alt: Google Music Manager Downloader 44 | :target: http://github.com/jaymoulin/google-music-manager-downloader/releases 45 | 46 | - `Google Music Manager Uploader `_ 47 | 48 | .. image:: https://img.shields.io/github/release/jaymoulin/google-music-manager-uploader.svg 49 | :alt: Google Music Manager Uploader 50 | :target: http://github.com/jaymoulin/google-music-manager-uploader/releases 51 | 52 | 53 | ===== 54 | About 55 | ===== 56 | 57 | Requirements 58 | ------------ 59 | 60 | Google Music Manager works with Python 3 or above. 61 | It requires `Simon Weber's Google Music API `_ and `Watchdog `_. 62 | 63 | Submitting bugs and feature requests 64 | ------------------------------------ 65 | 66 | Bugs and feature request are tracked on GitHub 67 | 68 | Author 69 | ------ 70 | 71 | Jay MOULIN jaymoulin@gmail.com See also the list of contributors which participated in this program. 72 | 73 | License 74 | ------- 75 | 76 | Google Music Uploader is licensed under the MIT License 77 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymoulin/google-music-manager/c8fb41f309fb21a43afd53b95560256562cb0289/logo.png --------------------------------------------------------------------------------