import PyPDF2
import pyttsx3
engine = pyttsx3.init()
pdfReader = PyPDF2.PdfFileReader(open('journey_to_the_west.pdf', 'rb'))
speaker = pyttsx3.init()
for page_num in range(pdfReader.numPages):
text = pdfReader.getPage(page_num).extractText()
speaker.say(text) find . -type f | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u
and then creating a .gitattribute file and adding git lfs track syntax. This command generates that for you, it tracks all the files and its extensions and creates lfs tracking syntax.
find . -type f | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u | awk '{print $1" filter=lfs diff=lfs merge=lfs -text"}' | sed 's/^/*./'







