Veamos cómo encontrar las etiquetas de título de un documento html dado usando BeautifulSoup en python. para que podamos encontrar la etiqueta del título del documento html usando el método find() de BeautifulSoup. La función de búsqueda toma el nombre de la etiqueta como entrada de string y devuelve la primera coincidencia encontrada de la etiqueta en particular de la página web.
Ejemplo 1:
Python
# import BeautifulSoup from bs4 import BeautifulSoup # create html document html = """ <html> <head> <title> GREEKSFORGREEKS </title> </head> <body> <p> GFG BeautifulSoup tutorial </p> </body> </html> """ # invoke BeautifulSoup() soup = BeautifulSoup(html, 'html.parser') print(" *** Title of the document *** ") # invoke find() print(soup.find("title"))
Producción:
Ejemplo 2:
Python
# import BeautifulSoup from bs4 import BeautifulSoup # create html document html = """ <html> <head> <title> Hi I am Title </title> </head> <body> <p> GFG BeautifulSoup tutorial </p> </body> </html> """ # invoke BeautifulSoup() soup = BeautifulSoup(html, 'html.parser') print(" *** Title of the document *** ") # invoke find() print(soup.find("title"))
Producción: