프로그래밍/PYTHON2 BeautifulSoup 이용한 크롤링 1. BeautifulSoup 모듈 설치 pip install beautifulsoup4 2. 네이버의 요일별 웹툰 리스트 가져오기 from urllib.request import urlopen from bs4 import BeautifulSoup # naver 일요 웹툰 전체 리스트 가져오기 url = "https://comic.naver.com/webtoon/weekdayList.nhn?week=mon" with urlopen(url) as html: urlopen(url) src = html.read() soup = BeautifulSoup(src, "html.parser") # print(soup.prettify()) img_ul = soup.find("ul", {"class": "img_list.. 2019. 9. 15. 맥 파이썬 개발환경 (with pyenv) pyenv 를 통해 python 버젼별 의존성 관리를 해줄수 있음. 1. brew 통해 설치 pyenv, pyenv-virtualenv brew install pyenv brew install pyenv-virtualenv 2. .bash_profile 설정 추가 vi ~/.bash_profile export PATH="$HOME/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" 3. pyenv 로 python 버젼 설치 pyenv install --list # 설치가능 리스트 확인 pyenv install 3.7.4 # 설치 pyenv versions # 설치완료된 버젼들 리스트 확인 * 표시 현재 버젼 pyenv sh.. 2019. 9. 15. 이전 1 다음