Use a Python script to get the meta info from provided url, without using BeautifulSoup.
(Above image shows partial Page Source of “yourgenome.org”. Click here to see larger image.)
The following script can be used to get meta information (e.g., Title, Description, Image) from the provided url webpage, using RegExp instead of BeautifulSoup.
title = "yourgenome.org | Helping you discover more about DNA, genes and genomes, and the implications for our health and society."
description = "Helping you discover more about DNA, genes and genomes, and the implications for our health and society."
image = "https://www.yourgenome.org/sites/all/themes/zen_yg/images/yg-screen.jpg"
url = "https://www.yourgenome.org"
RegExp can be adapted to get other information from the webpage, e.g., content between specific tags “<>”.