Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from bs4 import BeautifulSoup
- import requests
- url = "http://ibew357.net/index.cfm?zone=/unionactive/view_article.cfm&HomeID=168642&page=Refferal"
- result = requests.get(url)
- doc = BeautifulSoup(result.text, "html.parser")
- keyword = doc.find_all(text="JOURNEYMAN")
- print(keyword)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement