Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

one step

[파이썬] 텍스트와 텍스트의 반복 수 조합해 딕셔너리 만들기 본문

이것저것 코드/파이썬

[파이썬] 텍스트와 텍스트의 반복 수 조합해 딕셔너리 만들기

원-스텝 2022. 9. 16. 19:01
반응형

명언 인물 수집

배운 내용을 활용해 명언 사이트를 크롤링해보도록 하겠습니다. http://quotes.toscrape.com/

해당 명언 페이지에서 볼 수 있는, 명언을 말한 인물(예: Albert Einstein J.K. Rowling)들의 개수를 조사하고자 합니다.

명언을 말한 인물의 이름을 key, 해당 인물의 명언 개수를 value로 갖는 딕셔너리를 반환하는 함수를 작성하세요.

 

지시사항

함수 crawl_contents가 올바르게 구현되어야 합니다.

crawl_contents 함수

  • 매개변수: webdriver와 스크래핑 해야 하는 웹 페이지의 url
  • 반환값: 첫 페이지에 존재하는 명언을 말한 인물의 이름(문자열)을 key로 갖고, 해당 인물의 명언의 개수(int)를 value로 갖는 딕셔너리
  • 예를 들어 페이지 내에서 Albert Einstein의 명언이 10개, J.K. Rowling의 명언이 5개라면 딕셔너리 내에서 {'Albert Einstein': 10, 'J.K. Rowling': 5} 와 같은 형태로 저장되어있어야 합니다.

main 함수

  • main 함수에서 crawl_contents 함수를 호출하여 구현 결과를 테스트해볼 수 있습니다.

채점 기준

crawl_contents 함수의 반환값이 올바른 값이라면 정답으로 처리됩니다.

Tips!

webdriver 는 main 함수에서 이미 실행된 것에 유의하여 crawl_contents 함수를 작성해주세요.

 


# 초기코드
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.expected_conditions import presence_of_element_located
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.firefox.options import Options as FirefoxOptions


def crawl_contents(driver, url):
    # 인물별 명언의 개수를 담고 있는 딕셔너리를 반환하세요.
    people = {}

    return people


def main():
    # 브라우저 web driver 설정(Firefox)
    options = FirefoxOptions()
    with webdriver.Firefox(options=options) as driver:

        # 데이터를 가져올 사이트의 URL
        url = "http://quotes.toscrape.com/"

        print(crawl_contents(driver, url))


if __name__ == "__main__":
    main()

 

# 완성코드
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.expected_conditions import presence_of_element_located
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.firefox.options import Options as FirefoxOptions


def crawl_contents(driver, url):
    driver.get(url)
    # 인물별 명언의 개수를 담고 있는 딕셔너리를 반환하세요.
    people = {}
    author_list = []

    quote_list = driver.find_elements_by_class_name('quote')
    for quote in quote_list:
        author = quote.find_element_by_class_name('author').text
        author_list.append(author)

    for item in author_list:
        people[item] = author_list.count(item)

    return people


def main():
    # 브라우저 web driver 설정(Firefox)
    options = FirefoxOptions()
    with webdriver.Firefox(options=options) as driver:

        # 데이터를 가져올 사이트의 URL
        url = "http://quotes.toscrape.com/"

        print(crawl_contents(driver, url))


if __name__ == "__main__":
    main()
반응형