01 크롤링이란?
파이콘 2017 html 가져오기 - 2
방금 배운 requests
를 이용해
파이콘 2017 홈페이지의 html을 출력해보세요!
# -*- coding: utf-8 -*- import requests # GET 방식으로 pycon 홈페이지 가져오기 response = requests.get('https://archive.pycon.kr/2017/') # 가져온 response의 HTML가져오기 print(response.text) # 소스보기랑 같아요