Obtenez le contenu du site Web avec BeautifulSoup

from bs4 import BeautifulSoup
import requests
    
URL = 'https://google.com/'
content = requests.get(URL)
soup = BeautifulSoup(content.text, 'html.parser')

print(soup.text)

#This code will print the website content of google
#You can change the website by editing the URL inside the variable named 'URL'
ThePokedNoob