728x90
반응형
import requests as rq
url = "https://hello-ming.tistory.com/"
res=rq.get(url) #get방식으로 접근

이 url을 res로 지정 후

 

res.text #html 코드를 가져온다.

res.content #content, text는 한글 깨짐, utf-8 euc-kr

 

res.encoding #이 브라우저 페이지가 인코딩을 utf-8로 함을 알 수 있다.

 

 

 

 

728x90
반응형

+ Recent posts