傻瓜讀書軟件在升級(III)
這次案件只有一個了。
再大神的指導(dǎo)下,成功分析了文件類型,然后選擇了合適的處理方式。目前可以處理txt和word文件。感覺又有了提高。
代碼如下:(python3.7版本)
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import importlib,sys
importlib.reload(sys)
import tkinter
from tkinter.filedialog import askopenfilename
from docx import Document
from docx.shared import Inches
import pyttsx3
import os
l=[]
def openfile():
? ? file_path=askopenfilename()
? ? if os.path.splitext(str(file_path))[1]=='.txt': ? ?###利用os模塊的功能,成功分解文件的后綴
? ? ? ? f=open(file_path,encoding='utf-8')
? ? ? ? fread=f.read()
? ? ? ? f=str(fread)
? ? ? ? engine=pyttsx3.init()
? ? ? ? engine.say(f)
? ? ? ? engine.runAndWait()
? ? elif os.path.splitext(str(file_path))[1]=='.docx':
? ? ? ? f=Document(file_path)
? ? ? ? for para in f.paragraphs:
? ? ? ? ? ? l.append(para.text)
? ? ? ? engine=pyttsx3.init()
? ? ? ? engine.say(str(l))
? ? ? ? engine.runAndWait()
top=tkinter.Tk()
Button1=tkinter.Button(top, text ="選擇文件", command = openfile)
Button1.pack()
top.mainloop()
雖然不是非?,F(xiàn)代化,但是更加進步了一下。后續(xù)繼續(xù)升級改造。