2 Star 0 Fork 0

haok2/text2voice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
text2voice.py 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
haok2 提交于 2018-06-03 20:20 . 采用click命令行方式启动程序
# coding: utf8
'''
主程序入口
使用:命令行下输入 python text2voice.py 1 回车
'''
# 斗罗大陆
from novel import dou_luo_da_lu as dldl
# 发声
import voice
# 命令行
import click
@click.command()
@click.argument('opt', default=1)
def say(opt):
click.echo('正在爬取小说内容...')
command = ''
if opt < 0:
command = 'url_prev'
elif opt > 0:
command = 'url_next'
else:
command = 'url'
voice.say(dldl.novel_text(command))
if __name__ == '__main__':
click.echo('-1:上一章, 0:再听一遍, 1:下一章')
say()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/bobo2cj/text2voice.git
[email protected]:bobo2cj/text2voice.git
bobo2cj
text2voice
text2voice
master

搜索帮助