본문 바로가기
반응형
반응형

전체 글55

반응형
[웹크롤링] 파이썬으로 삼성주식뉴스 가져오기 In [1]: import requests from bs4 import BeautifulSoup import pandas as pd result = [] jour = [] for page in range(10): raw = requests.get('https://search.naver.com/search.naver?&where=news&query=%EC%82%BC%EC%84%B1%EC%A0%84%EC%9E%90' + str(page * 10 + 1), headers={'User-Agent': 'Mozilla/5.0'}).text html = BeautifulSoup(raw, 'html.parser') articles = html.select(&#3.. 2020. 9. 20.
[Kaggle] 타이타닉 생존자 예측 도전 캐글에 제출했더니 0.79가 나왔다. 데이터 전처리가 부족한거 같다. 알고리즘은 다 써봤는데;; Name 변수를 좀 더 이용하면 좋을거 같다. 그래도 1000등안에 들어서 만족스럽긴 하다. (아직 입문단계 ㅠㅠ) In [1]: from IPython.core.display import display, HTML display(HTML("")) import pandas as pd import numpy as np import seaborn as sns sns.set_style('dark') import matplotlib.pyplot as plt from matplotlib import font_manager, rc font_path = "c:/Windows/Fonts/malgun.ttf" font_name.. 2020. 9. 20.
[웹크롤링]네이버 주식뉴스 크롤링 시도 import requests from bs4 import BeautifulSoup url = 네이버 주소 html = requests.get(url) soup = BeatifulSoup(html.text , 'html.parser') content = soup.find_all('dd', {'class', 'articleSubject'}) for i in content: b = i.find_all('a')['href'] print(b) 네이버 주식뉴스 게시판에 requests 후 뷰숩으로 html을 간단히 만들었다.. 뉴스에 들어가서 데이터를 뽑아낼려고 했더니 주소에 못들어 간단다.. 뭐지 네이버에서 막아놓은건가? 딴곳을 찾으러 가야겠다.. 2020. 8. 14.
[flutter]Textfield 로그인 페이지 구현을 위해 textfield를 사용했다. TextField( decoration: InputDecoration( border: OutlineInputBorder(), hintText: 'Password', labelText: 'Password' ), keyboardType: TextInputType.text, obscureText: true, ), textfield를 꾸미기 위해서는 decoration이 필요하다. 그 안에서 border에 OutlineInputBorder()를 사용해 일자였던 칸들을 네모 모양으로 만들었다. hintText는 칸 안에 설명을 나타내주는것이고 labelText는 칸밖의 설명이라고 할 수 있다. keyBoardType은 키보드가 숫자를 나타내고있을지 영어를 .. 2020. 8. 11.
반응형