python:: Error - beautifulSoup, 'Response'has no len ()
TypeError : object of type 'Response'has no len () requests와 BeautifulSoup과 관련된 에러로url의 페이지를 불러오면 'doc'형태로 불러오는데 이것을 beautifulSoup에서 읽으려면' url.TEXT '로 변환하는 것이 필요함. >> 아래처럼 입력하면 잘 된다.import requestsfrom bs4 import BeautifulSoupsoup = BeautifulSoup(requests.get("your_url").text, 'lxml') 더 상세한 사항은 아래링크로stackoverflow.com/questions/36709165/beautifulsoup-object-of-type-response-has-no-len Beautif..