當前位置: 首頁>>代碼示例>>Python>>正文


Python Musicmanager.perform_oath方法代碼示例

本文整理匯總了Python中gmusicapi.Musicmanager.perform_oath方法的典型用法代碼示例。如果您正苦於以下問題:Python Musicmanager.perform_oath方法的具體用法?Python Musicmanager.perform_oath怎麽用?Python Musicmanager.perform_oath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gmusicapi.Musicmanager的用法示例。


在下文中一共展示了Musicmanager.perform_oath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: Musicmanager

# 需要導入模塊: from gmusicapi import Musicmanager [as 別名]
# 或者: from gmusicapi.Musicmanager import perform_oath [as 別名]
    original_sigint = signal.getsignal(signal.SIGINT)
    signal.signal(signal.SIGINT, exit_cleanly)


    parser = argparse.ArgumentParser(description="Google Music Player")
    parser.add_argument('-l','--login', required=False, help='Create login credentials.', action="store_true")
    parser.add_argument('-s','--shuffle', required=False, help='Play in random order.', action="store_true")
    parser.add_argument('-r', '--refresh', required=False, help='Refresh Library.', action="store_true")
    parser.add_argument('-d', '--display', required=False, help='Display playlist only.', action="store_true")
    parser.add_argument('-t', '--artist', required=False, help='Artist Filter' )
    args = parser.parse_args()    

    mm = Musicmanager()
    if args.login:
        mm.perform_oath()
        sys.exit(0)

    print "Logging In..."
    mm.login()

    if args.refresh:
        print "Getting Songs"
        library = mm.get_uploaded_songs()
        with open('library.txt','w') as f:
            pickle.dump( library, f)

    print "Loading Library..."
    with open('library.txt','r') as f:
        library = pickle.load( f )
開發者ID:mdepoint,項目名稱:gmusic-player,代碼行數:31,代碼來源:gplayer.py


注:本文中的gmusicapi.Musicmanager.perform_oath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。