코드 from bs4 import BeautifulSoup import urllib.request as req url = "https://finance.naver.com/marketindex/" res = req.urlopen(url) soup = BeautifulS…
Read More어떤 사이트 도메인을 수집해야 하는데 하위 도메인이 많고 특정 정보한 경우 한 대상에 대한 정보를 수집하는 데 시간이 많이 소요될 수 있습니다. If you need to collect a site domain, but have many subdomains and have specif…
Read More