분류 전체보기 (197) 썸네일형 리스트형 hinative 1번째 질문 목록 from selenium import webdriver driver=webdriver.Chrome('C:\Chrome_Driver\chromedriver.exe') driver.get('https://hinative.com/en-US/users/sign_in') driver.find_element_by_name('user[login]').send_keys('') driver.find_element_by_name('user[password]').send_keys('') driver.find_element_by_xpath('//*[@id="new_user"]/input[4]').click() from bs4 import BeautifulSoup def get_questions(): questions=[] d.. Hinative 로그인 하기 from selenium import webdriver driver=webdriver.Chrome('C:\Chrome_Driver\chromedriver.exe') driver.get('https://hinative.com/en-US/users/sign_in') driver.find_element_by_name('user[login]').send_keys('') driver.find_element_by_name('user[password]').send_keys('') driver.find_element_by_xpath('//*[@id="new_user"]/input[4]').click() 파파고에 문장 번역시키기 https://book.coalastudy.com/data-crawling/week-6/challenge-1 과제 코드 from selenium import webdriver driver=webdriver.Chrome('C:\Chrome_Driver\chromedriver.exe') driver.get('https://papago.naver.com/') driver.find_element_by_id('txtSource').send_keys('i love koala study') driver.find_element_by_xpath('//*[@id="btnTranslate"]').click() 자동 로그인 및 주요 정보 추출하기 파이썬 연속적인 크롤링하기 import requests from bs4 import BeautifulSoup class Conversation: def __init__(self, question, answer): self.question=question self.answer=answer def __str__(self): return "질문: " +self.question + "\n답변: " + self.answer + "\n" def get_subjects(): subjects=[] req=requests.get('https://basicenglishspeaking.com/daily-english-conversation-topics/') html=req.text soup=BeautifulSoup(html, 'html.parser'.. 파이썬 공지사항 크롤링 하기 import requests from bs4 import BeautifulSoup # 특정 url에 접속하는 요청(Request) 객체를 생성합니다. request=requests.get("http://www.dowellcomputer.com/main.jsp") # 접속한 이후의 웹 사이트 소스코드를 추출합니다. html=request.text # HTML 소스코드를 파이썬 객체로 변환합니다. soup=BeautifulSoup(html, 'html.parser') # 태그 포함하는 요소를 추출합니다. links=soup.select('td > a') # 모든 링크에 하나씩 접근합니다. for link in links: #링크가 href 속성을 가지고있다면 if link.has_attr('href'): #.. 미드 표현정리 12_3 ex)I still haven't gotten up the guts to tell my parents Infidelity (synonyms include: cheating, adultery (when married), being unfaithful, or having an affair) is a violation of a couple's assumed or stated contract regarding emotional and/or sexual exclusivity. call off something— phrasal verb with call US /kɔl/ verbto decide that a planned event will not happen:Union leaders called the str.. if anything if anything, you're pathologically unshallow오히려 너는 병리학적으로(비정상적으로) 얕지않은 사람이야 free translation다른 보통 남자들(여자를 겉모습을 가지고 판단하는)과 너는 너무나도 다르다. 이전 1 ··· 17 18 19 20 21 22 23 ··· 25 다음