Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # load the required packages
- from bs4 import BeautifulSoup
- # we need a module to connect to websites, you can also use built-in urrlib module.
- import requests
- url = "https://en.wikipedia.org/wiki/CSS_Baltic"
- # get the website data
- response = requests.get(url)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement