Open melamela0109 opened 2 years ago
requests 라이브러리에서 가져오기 >> 설치
import requests
stackoverflow_result = requests.get("https://stackoverflow.com/questions/tagged/python")
print(stackoverflow_result.text)
html에서 정보 추출>> beautifulsoup4 이용
제작환경 (https://repl.it/)
접속대상
python으로 URL에서 자료 추출하기
HTML에서 정보추출하기
requests 라이브러리에서 가져오기 >> 설치
import requests
stackoverflow_result = requests.get("https://stackoverflow.com/questions/tagged/python")
print(stackoverflow_result.text)
html에서 정보 추출>> beautifulsoup4 이용