I'm new to python and this forum. I am currently using PyCharm, and using it to make a simple code that prints the source code of website on the screen. I saw a video and the code was something like:
import requests
from bs4 import BeautifulSoup4
url = "Google.com"
S = requests.get(url)
C = s.text
T = BeautifulSoup(C)
print(T)
Now I want to read a line in the source code from a website, like a fixed definite line, how am I supposed to do it?
Also, how to use pyttsx
on Windows in PyCharm. I need a text to speech engine for python.
Is there any way I can use a speech recognition engine on python. I mean online like Google or offline too?