Trouver Meta Tag d'un site Web dans Python

# importing the HTMLSession class
from requests_html import HTMLSession
# create the object of the session
session = HTMLSession()
# url of the page
web_page = 'https://totalhealthmagazine.com/About-Us'
# making get request to the webpage
respone = session.get(web_page)
# getting the html of the page
page_html = respone.html
# finding all meta tags
meta_tags= page_html.find('meta')
# extracting meta tags html
for tag in meta_tags:
    print(tag.html)Copy Again
Pythonist