import requestsfrom bs4 import BeautifulSoupurl = 'https://skymin02.tistory.com/'r = requests.get(url)soup = BeautifulSoup(r.text,"html.parser")print(soup) 코드 분석모듈을 불러오는 작업 : import, from bs4 import Beautifulsoup(처음에 import beautifulsoup를 했다가 안되서 검색을 통해서 다르게 해야한다는 걸 알았다.) html 정보를 불러오는 작업 : requests.get(url) html 정보를 요소, 속성, 텍스트로 분류 하는 작업을 parser 라고 생각하면 된다. *html : 일종의 문법으로 웹페이지를 만든 정보 집합체(한..