1102 TIL

looggi·2022년 11월 2일
1

스파르타 내배캠 AI-3

목록 보기
54/130

🎈 프로젝트 1일차

🎁 git

  • touch ~/.gitmessage.txt
    git config --global commit.template ~/.gitmessage.txt
    ➡ --global은 현재 프로젝트 폴더 뿐 아니라 내 컴퓨터 전역에 설치하겠단 의미
    touch .gitmessage.txt
    git config commit.template .gitmessage.txt
    ➡ 현재 프로젝트 폴더에서만 커밋 메시지 템플릿 적용
  • git branch -m <바꾸고싶은 브랜치이름>
  • git pull origin <풀 받고싶은 특정 브랜치>

🎁 구글 이미지 크롤링 후 로컬에 저장하기

https://ssung85.tistory.com/81

from urllib.request import urlretrieve 
from bs4 import BeautifulSoup as BS    
from selenium import webdriver


wine_name = input("wine : ")
wine_name = wine_name.replace(' ','+')
i_url = f'https://www.google.com/search?q={wine_name}&source=lnms&tbm=isch&sa=X&ved=2ahUKEwi4rtfAq4_7AhXRq1YBHaI3B7oQ_AUoAnoECAEQBA&biw=967&bih=554&dpr=1.25#imgrc=aWODM-gjNv81jM'
driver = webdriver.Chrome('C:/Users/hyojine/Downloads/chromedriver_win32/chromedriver.exe')
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver.get(i_url)

html = driver.page_source
soup = BS(html,features="html.parser")
profile
looooggi

0개의 댓글