Skip to content
조회 수 1625 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

파이썬 한우정액 정보 스프레드로 추출하기

 

 

 

 

import time
from unicodedata import lookup #time 명령어 사용하기 
from bs4 import BeautifulSoup # BeautifulSoup 불러오기






 
#파이썬 requests 모듈은 간편한 HTTP 요청처리를 위해 사용하는 모듈로 별도로 설치해 주어야 한다.
import requests #pip3 install requests
 
#정액사이트 http://www.limc.co.kr/KpnInfo/KpnDetail.asp?KpnNo=1146%20&chk=B&cKPNno=
group = '1그룹'
search_data = '1243'
 
url = "http://www.limc.co.kr/KpnInfo/KpnDetail.asp?KpnNo=" + search_data + "%20&chk=B&cKPNno="
html = requests.get(url)
bs_html = BeautifulSoup(html.content,"html.parser")
 
#체형정보
form = bs_html.select("table.t07 tr")[2]
sirloin = form.select("td")[2].text
print(sirloin#등심값
 
form = bs_html.select("table.t07 tr")[12]
ht = form.select("td")[2].text
print(ht#체고
 
form = bs_html.select("table.t07 tr")[14]
lh = form.select("td")[2].text
print(lh#체장
 
#유전능력
form = bs_html.select("table.t06 tr")[1]
cold_wt1 = form.select("td")[0].text #냉도체중EPD
bcjg1 = form.select("td")[1].text #배최장근단면도EPD
bk_fat1 = form.select("td")[2].text #등지방두께EPD
ir_fat1 = form.select("td")[3].text #근내지방도EPD
 
form = bs_html.select("table.t06 tr")[2]
cold_wt2 = form.select("td")[0].text #냉도체중Acc
bcjg2 = form.select("td")[1].text #배최장근단면도Acc
bk_fat2 = form.select("td")[2].text #등지방두께Acc
ir_fat2 = form.select("td")[3].text #근내지방도Acc


 
#결과값 스프레드로 전달하기
import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = [
'https://spreadsheets.google.com/feeds',
'https://www.googleapis.com/auth/drive',
]
json_file_name = 'C:\\Users\\크리스퍼\\python_code\\JSON주소.json'
credentials = ServiceAccountCredentials.from_json_keyfile_name(json_file_namescope)
gc = gspread.authorize(credentials)
spreadsheet_url = '파일주소'
# 스프레스시트 문서 가져오기 
doc = gc.open_by_url(spreadsheet_url)
# 시트 선택하기
worksheet = doc.worksheet('정액')
 
#print(now + " ||| " + eps + " ||| " + bps + " ||| " + per + " ||| " + upper + " ||| " + pbr + " ||| " + allocation)
worksheet.insert_row([groupsearch_datasirloinhtlhcold_wt1bcjg1bk_fat1ir_fat1cold_wt2bcjg2bk_fat2ir_fat2], 3)

 

 

스프레드시트로 전송한 결과 이미지

휴지통.png

 

로그인 후 댓글쓰기가 가능합니다.

?

  1. 22
    Feb 2016
    10:42

    아파치 ab 로 성능테스트 하기

    CategoryServer Views12357
    Read More
  2. 22
    Feb 2016
    09:47

    8기가 램에 맞는 Mysql config 셋팅 값

    CategoryServer Views3858
    Read More
  3. 21
    Feb 2016
    23:16

    LG G5 기능 어디한번 보자

    Category컴퓨터잡담 Views8993
    Read More
  4. 17
    Feb 2016
    23:30

    오토셋과 apmsetup

    CategoryServer Views2026
    Read More
  5. 23
    Jan 2016
    04:32

    Sitemap.xml 만들어 주는 사이트

    Category컴퓨터잡담 Views690
    Read More
  6. 22
    Jan 2016
    09:21

    ES 파일 탐색기로 FTP 동영상 재생하기

    Category컴퓨터잡담 Views2363
    Read More
  7. 11
    Jan 2016
    23:14

    Diskless Boot Software for Windows(윈도우용 노하드 시스템)

    CategoryWindowsTip Views8583
    Read More
  8. 26
    Dec 2015
    01:37

    ACTIVE-X 의 무서움

    Category컴퓨터잡담 Views669
    Read More
  9. 10
    Dec 2015
    03:45

    서버 다운 원인

    Category컴퓨터잡담 Views558
    Read More
  10. 04
    Dec 2015
    23:52

    엑셀 지정행 반복인쇄 하는 방법[지정행/지정열]

    CategoryExcel Views6106
    Read More
  11. 04
    Dec 2015
    23:33

    [안드로이드] 키캣 4.4 버전 플래시 동영상 안될때 해결방법

    Category컴퓨터잡담 Views1147
    Read More
  12. 01
    Dec 2015
    08:35

    PC에 안드로이드 설치하기

    Category컴퓨터잡담 Views989
    Read More
  13. 01
    Dec 2015
    03:48

    안드로이드 플래시 동영상이 안될때 해결방법 [200, Stream not found, NetStream.Play.StreamNotFound, clip: '[Clip] ...Progress]

    Category컴퓨터잡담 Views3902
    Read More
  14. 30
    Nov 2015
    00:08

    [오류해결방법] 200, Stream not found, NetStream.Play.StreamNotFound, clip: '[Clip] ...

    Category컴퓨터잡담 Views1355
    Read More
  15. 27
    Nov 2015
    01:52

    Windows APM Install(Apache 2.4, PHP 6.0, Mysql) 최신버전 설치해보기

    CategoryServer Views1246
    Read More
  16. 18
    Nov 2015
    02:24

    Google 문서도구를 컴퓨터에 동기화

    Category[Docs]스프레드시트 Views4377
    Read More
  17. 13
    Nov 2015
    05:06

    박지성 맨유시절 호날두와의 호흡경기 모음(유니세프 친선경기)

    Category컴퓨터잡담 Views827
    Read More
  18. 13
    Nov 2015
    03:32

    도스 배치파일로 원격지 컴퓨터 모니터링

    Category컴퓨터잡담 Views833
    Read More
  19. 12
    Nov 2015
    02:53

    DOS Batch - FTP Scripts 배치파일

    CategoryWindowsTip Views5702
    Read More
  20. 11
    Nov 2015
    00:03

    엑셀 깨진파일 복구하기

    CategoryExcel Views7674
    Read More
Board Pagination Prev 1 ... 11 12 13 14 15 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소