Python 13

Data Crawling_Day 03 & Git, GitHub 연습하기

Jupyter Lab 활용 & Git, GitHub 연습하기 08.naverlogin.ipynb 작성 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys import time import pyperclip pyperclip 설치하기 !pip install pyperclip # 네이버 아이디, 비밀번호 입력하기 id = '' pw = '' url = 'https://nid.naver.com/nidlogin.login' driver = webdriver.Chrome() driver.get(url) time.sleep(3) # driver.fi..

Data Crawling_Day 02 & Git, GitHub 설치 및 연습하기

Jupyter Lab 활용, Git & Github 설치 및 설정, 연습하기 과제 풀이(05_cgv_bugsmusic.ipynb 작성) 06_starbucks.ipynb 작성 07_selenium_test.ipynb 작성 - Anaconda 환경에서 발생하는 오류 해결하기: selenium 업데이트하면 해결됨. import selenium selenium.__version__ # selenium 버전 확인하기 관리자 권한에서 실행하였음. conda install -c conda-forge selenium git 설치 및 설정 git 오른쪽 마우스 클릭 - Options 에서 설정 가능 폰트 및 크기 설정은 Options - Text - Font - Select D2Coding (코딩에 적합한 폰트) 다운..