Programming,  Python

[Python] Web Page HTML 확인

어떤 사이트에서 HTML을 받아오는 코드는 다음과 같다.

import requests

url = "https://www.python.org/"
resp = requests.get(url)

html = resp.text
print(html)

Leave a Reply

Your email address will not be published. Required fields are marked *