Skip to content

Commit

Permalink
Version 1.6.2.4
Browse files Browse the repository at this point in the history
[...] should have known this eariler
  • Loading branch information
mos9527 committed Apr 5, 2021
1 parent 259d777 commit f68ce17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyncm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from time import time
import requests,logging,json

__version__ = "1.6.2.3"
__version__ = "1.6.2.4"

class Session(requests.Session):
'''Represents an API session'''
Expand Down
4 changes: 2 additions & 2 deletions pyncm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def parse_args():
parser = MultiParser()
parser.add_argument('url',metavar='链接',help='网易云音乐分享链接')
group = parser.add_argument_group('下载')
parser.add_argument('--quality',metavar='音质',choices=list(BITRATES.keys()),help='音频音质(高音质需要 CVIP)',default='standard')
parser.add_argument('--output',**parser.filter_argument(metavar='输出',default='.',help='输出文件夹',widget='DirChooser'))
group.add_argument('--quality',metavar='音质',choices=list(BITRATES.keys()),help='音频音质(高音质需要 CVIP)',default='standard')
group.add_argument('--output',**parser.filter_argument(metavar='输出',default='.',help='输出文件夹',widget='DirChooser'))
group = parser.add_argument_group('登陆')
group.add_argument('--phone',metavar='手机',default='',help='网易账户手机号')
group.add_argument('--password',metavar='密码',default='',help='网易账户密码')
Expand Down

0 comments on commit f68ce17

Please sign in to comment.