Skip to content

Instantly share code, notes, and snippets.

@rvth
Created September 2, 2021 10:20
Show Gist options
  • Select an option

  • Save rvth/fb8599647a0e237120b2bed2c372cf7c to your computer and use it in GitHub Desktop.

Select an option

Save rvth/fb8599647a0e237120b2bed2c372cf7c to your computer and use it in GitHub Desktop.
from bs4 import BeautifulSoup
import requests
url = 'https://www.deepcrawl.com'
req = requests.get(url)
soup = BeautifulSoup(req.text, "html.parser")
title = soup.title print(title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment