We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a4695 commit 98ae041Copy full SHA for 98ae041
day2_0.py
@@ -0,0 +1,14 @@
1
+# web scrapping 실습..웹상의 데이터 추출하기
2
+# url 로부터 제목과 상단 첫 이미지를 가져와서 보여준다.
3
+# 원하는 정보를 자유롭게 추출해올 수 있다.
4
+
5
+# 스택오버플로우와 indeed에서 가져온 구직 정보를 리스트해서 엑셀로 정리한다.
6
7
+# 요청을 만드는 기능을 모아둔 모듈
8
+import requests
9
10
+indeed_resul = requests.get("https://www.indeed.com/jobs?q=Python&limit=50")
11
12
+print(indeed_resul.text) # html의 모든 text 내용을 가져왔다.
13
14
+# html에서 정보를 추출하기에 유용한 BeautifulSoup 패키지
0 commit comments