本文整理汇总了Python中helpers.Helpers.print_hint方法的典型用法代码示例。如果您正苦于以下问题:Python Helpers.print_hint方法的具体用法?Python Helpers.print_hint怎么用?Python Helpers.print_hint使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类helpers.Helpers
的用法示例。
在下文中一共展示了Helpers.print_hint方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: do_search
# 需要导入模块: from helpers import Helpers [as 别名]
# 或者: from helpers.Helpers import print_hint [as 别名]
def do_search(self, query):
"""搜索歌曲、歌手、专辑 etc.
用法示例:
\033[92mfeeluown ☛ search 刘德华\033[0m
"""
if query.startswith('"'):
query = query[1:-1]
func = 'search("%s")' % query
Client.send(func)
data = Client.recv()
songs = data.get('result', None)
if type(songs) == list:
self.songs = songs[:10]
Helpers.print_music_list(songs)
else:
Helpers.print_hint("蛋疼,没有搜到...")
示例2: do_play
# 需要导入模块: from helpers import Helpers [as 别名]
# 或者: from helpers.Helpers import print_hint [as 别名]
def do_play(self, query):
"""切换为播放状态或者播放一首特定的歌曲
假设有一首歌的id是: 1314
你可以通过以下命令播放你所指定的这首歌
用法示例:
\033[92mfeeluown ☛ play 1314\033[0m
你也可以不加参数,它可以让播放器从暂停状态切换为播放状态:
\033[92mfeeluown ☛ play\033[0m
"""
func = 'play()'
if query != '':
try:
func = 'play(%d)' % int(query)
except ValueError:
Helpers.print_hint("参数必须是歌曲的 id")
return
Client.send(func)
Client.recv()