[Python] BeautifulSoup
개발사항 사용자로부터 URL 을 입력 받는다. 입력받은 URL 의 a 태그 속성을 모두 출력한다. import urllib.request, urllib.parse, urllib.error from bs4 import BeautifulSoup import ssl ctx = ssl.create_default_context() ctx.check_hostname = False ctx.verify_mode = ssl.CERT_NONE url = input('Enter - ') html = urllib.request.urlopen(url, context=ctx).read() soup = BeautifulSoup(html, 'html.parser') tags = soup('a') for tag in tags : pr..
IT/Python
2020. 12. 1. 10:10
공지사항