How to scrape all the home page text content of a website?
问题 So I am new to webscraping, I want to scrape all the text content of only the home page. this is my code, but it now working correctly. from bs4 import BeautifulSoup import requests website_url = "http://www.traiteurcheminfaisant.com/" ra = requests.get(website_url) soup = BeautifulSoup(ra.text, "html.parser") full_text = soup.find_all() print(full_text) When I print "full_text" it give me a lot of html content but not all, when I ctrl + f " traiteurcheminfaisant@hotmail.com" the email adress