Skip to content

Commit

Permalink
Version 1.6.3.3
Browse files Browse the repository at this point in the history
[-] fixup : some VERY minor typos
  • Loading branch information
mos9527 committed Jun 20, 2021
1 parent 6e8f6b2 commit a719b76
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.3.1"
__version__ = "1.6.3.3"

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 @@ -245,13 +245,13 @@ def parse_args():
standard - 标准''',default='standard')
group.add_argument('--output',metavar='输出',default='.',help='输出文件夹')
group = parser.add_argument_group('歌词')
group.add_argument('--lyric-no',metavar='跳过歌词',help=r'''跳过某些歌词类型的合并
group.add_argument('--no-lyric',metavar='跳过歌词',help=r'''跳过某些歌词类型的合并
参数:
lrc - 源语言歌词
tlyric - 翻译后歌词
romalrc- 罗马音歌词
例:
--lyric-no tlyric --lyric-no romalrc 将只下载源语言歌词''', choices=['lrc','tylric','romalrc'], default='',nargs='+')
--lyric-no tlyric --lyric-no romalrc 将只下载源语言歌词''', choices=['lrc','tlyric','romalrc'], default='',nargs='+')
group = parser.add_argument_group('登陆')
group.add_argument('--phone',metavar='手机',default='',help='网易账户手机号')
group.add_argument('--pwd',metavar='密码',default='',help='网易账户密码')
Expand Down

0 comments on commit a719b76

Please sign in to comment.