Skip to content

Commit ff4dbb4

Browse files
committed
implemting beautiful soup and testing it out
1 parent d796ae9 commit ff4dbb4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import requests
2+
from bs4 import BeautifulSoup
3+
url = 'https://www.totaljobs.com/jobs/in-london'
4+
5+
r = requests.get(url)
6+
7+
#print(r)
8+
9+
html_soup= BeautifulSoup(r.content, 'html.parser')
10+
#print(html_soup.prettify())
11+
12+
13+
14+
15+
16+

0 commit comments

Comments
 (0)