Created
September 2, 2021 10:20
-
-
Save rvth/fb8599647a0e237120b2bed2c372cf7c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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