#pip install beautifulsoup4 import os import requests from bs4 import BeautifulSoup url = "https://www.google.com/" reponse = requests.get(url) if reponse.ok: soup = BeautifulSoup(reponse.text, "lxml") title = str(soup.find("title")) title = title.replace("<title>", "") title = title.replace("</title>", "") print("The title is : " + str(title)) os.system("pause") #python (code name).py
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter