コード例 #1
0
ファイル: main.py プロジェクト: lirenwei123/music-dl
def main():
    music_list = []

    if not glovar.get_option('keyword'):
        # 如果未设置关键词
        keyword = input('请输入要搜索的歌曲,名称和歌手一起输入可以提高匹配(如 空帆船 朴树):\n > ')
        glovar.set_option('keyword', keyword)

    for source in glovar.get_option('source').split():
        try:
            echo.notice(source=source)
            music_list += addons.get(source).search(
                glovar.get_option('keyword'))
        except Exception as e:
            logger.error('Get %s music list failed.' % source.upper())
            logger.error(e)

    if glovar.get_option('merge'):
        # 对搜索结果排序和去重
        music_list = music_list_merge(music_list)

    echo.menu(music_list)
    choices = input('请输入要下载的歌曲序号,多个序号用空格隔开:')

    downloadByIndexList(choices.split(), music_list)

    # 下载完后继续搜索
    keyword = input('请输入要搜索的歌曲,或Ctrl+C退出:\n > ')
    glovar.set_option('keyword', keyword)
    main()
コード例 #2
0
ファイル: main.py プロジェクト: king1043/music-dl
def setopts(args):
    '''
    根据命令行输入的参数修改全局变量
    :param args: 命令行参数列表
    :return:
    '''
    try:
        opts, others = getopt.getopt(
            args, 'vhk:s:c:o:',
            ['verbose', 'help', 'keyword=', 'source=', 'count=', 'outdir='])
    except getopt.GetoptError as e:
        logger.error('命令解析失败')
        logger.error(e)
        echo.usage()
        sys.exit(2)

    glovar.init_option()

    for o, a in opts:
        if o in ('-h', '--help'):
            echo.usage()
            sys.exit(2)
        elif o in ('-v', '--verbose'):
            glovar.set_option('verbose', True)
        elif o in ('-k', '--keyword'):
            glovar.set_option('keyword', a)
        elif o in ('-s', '--source'):
            glovar.set_option('source', a)
        elif o in ('-c', '--count'):
            glovar.set_option('count', int(a))
        elif o in ('-o', '--outdir'):
            glovar.set_option('outdir', a)
        else:
            assert False, 'unhandled option'
コード例 #3
0
ファイル: main.py プロジェクト: fcic/music-dl
def main():
    music_list = []
    thread_pool = []
    errors = []

    if not glovar.get_option('keyword'):
        # 如果未设置关键词
        keyword = input('请输入要搜索的歌曲,名称和歌手一起输入可以提高匹配(如 空帆船 朴树):\n > ')
        glovar.set_option('keyword', keyword)

    echo.notice(glovar.get_option('keyword'))

    for source in glovar.get_option('source').split():
        t = threading.Thread(target=music_search, args=(source, music_list, errors))
        thread_pool.append(t)
        t.start()

    for t in thread_pool:
        t.join()

    echo.line()

    for err in errors:
        logger.error('Get %s music list failed.' % err[0].upper())
        logger.error(err[1])

    if glovar.get_option('merge'):
        # 对搜索结果排序和去重
        music_list = music_list_merge(music_list)

    echo.menu(music_list)
    choices = input('请输入要下载的歌曲序号,多个序号用空格隔开:')

    for choice in choices.split():
        start, _, end = choice.partition('-')
        if end:
            for i in range(int(start), int(end)+1):
                music_download(i, music_list)
        else:
            music_download(start, music_list)

    # 下载完后继续搜索
    keyword = input('请输入要搜索的歌曲,或Ctrl+C退出:\n > ')
    glovar.set_option('keyword', keyword)
    main()
コード例 #4
0
ファイル: cli.py プロジェクト: yangwei0401/music-dl
def set_music_keyword(comment='请输入要搜索的歌曲,或Ctrl+C退出:\n > '):
    keyword = input(comment)
    glovar.set_option('keyword', keyword)
コード例 #5
0
ファイル: cli.py プロジェクト: zhaoyun0071/music-dl
def set_opts(args):
    '''
    根据命令行输入的参数修改全局变量
    :param args: 命令行参数列表
    :return:
    '''
    try:
        opts, others = getopt.getopt(args, 'vhmk:s:c:o:x:',
                                        ['verbose', 'help', 'merge', 'nomerge',
                                         'keyword=', 'source=', 'count=', 'outdir=', 'proxy='])
    except getopt.GetoptError as e:
        logger.error('命令解析失败')
        logger.error(e)
        echo.usage()
        sys.exit(2)

    for o, a in opts:
        if o in ('-h', '--help'):
            echo.usage()
            sys.exit(2)
        elif o in ('-v', '--verbose'):
            glovar.set_option('verbose', True)
        elif o in ('-k', '--keyword'):
            glovar.set_option('keyword', a)
        elif o in ('-s', '--source'):
            glovar.set_option('source', a)
        elif o in ('-c', '--count'):
            c = int(a) if int(a) < 51 else 50
            glovar.set_option('count', c)
        elif o in ('-o', '--outdir'):
            glovar.set_option('outdir', a)
        elif o in ('-x', '--proxy'):
            proxies = { 'http': a, 'https': a}
            glovar.set_option('proxies', proxies)
        elif o in ('-m', '--merge'):
            glovar.set_option('merge', True)
        elif o in ('--nomerge'):
            glovar.set_option('merge', False)
        else:
            assert False, 'unhandled option'