크롤링 (bs4)HTML+CSS+JS+Flask/mongoDB+pymongo+크롤링2021. 6. 24. 14:34
Table of Contents
우선 크롤링에 필요한 bs4(beautifulsoup4) 패키지를 설치하자!
- 아래 링크를 참고해서 bs4 패키지를 설치하자!
- 만약 requests 패키지가 없다면 추가로 설치해주자!
https://duckgugong.tistory.com/152
크롤링 기본 세팅 코드
- 아래 기본 템플릿을 가지고 크롤링을 위한 코드를 작성하면 된다!
import requests
from bs4 import BeautifulSoup
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'}
data = requests.get('크롤링을 하기 원하는 URL',headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
# 코딩 시작
BeatifulSoup 기능 알아보기
- https://movie.naver.com/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303
- 위 네이버 영화 페이지를 이용해서 크롤링을 이용해보자.
- request.get의 인자로 위의 링크를 넣으면 된다.
BeautifulSoup
- BeautifulSoup의 인자로 requests의 결과에 .text를 붙여주고 넣으면 해당 페이지의 HTML코드가 객체로 변환되어 저장된다.
import requests
from bs4 import BeautifulSoup
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'}
data = requests.get('https://movie.naver.com/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303',headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
# 코딩 시작
- 우선 requests로 요청한 결과를 BeautifulSoup으로 솎아낸 결과를 출력해보자.
print(soup)
- 해당 페이지의 HTML 코드들이 출력되는 모습을 확인할 수 있다!
<!DOCTYPE html>
<html lang="ko">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="http://imgmovie.naver.com/today/naverme/naverme_profile.jpg" property="me2:image">
<meta content="네이버영화 " property="me2:post_tag">
<meta content="네이버영화" property="me2:category1"/>
<meta content="" property="me2:category2"/>
<meta content="랭킹 : 네이버 영화" property="og:title"/>
<meta content="영화, 영화인, 예매, 박스오피스 랭킹 정보 제공" property="og:description"/>
<meta content="article" property="og:type"/>
<meta content="https://movie.naver.com/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303" property="og:url"/>
<meta content="http://static.naver.net/m/movie/icons/OG_270_270.png" property="og:image"/><!-- http://static.naver.net/m/movie/im/navermovie.jpg -->
<meta content="http://imgmovie.naver.com/today/naverme/naverme_profile.jpg" property="og:article:thumbnailUrl"/>
<meta content="네이버 영화" property="og:article:author"/>
<meta content="https://movie.naver.com/" property="og:article:author:url"/>
<link href="https://ssl.pstatic.net/static/m/movie/icons/naver_movie_favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<title>랭킹 : 네이버 영화</title>
<link href="/common/css/movie_tablet.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/common.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/layout.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/old_default.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/old_layout.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/old_common.css?20210624141932" rel="stylesheet" type="text/css"/>
<link href="/common/css/old_super_db.css?20210624141932" rel="stylesheet" type="text/css"/>
<script src="/common/js/default-min.js" type="text/javascript"></script>
</meta></meta></head>
<body>
<div class="fix" id="wrap">
<!-- GNB -->
<script type="text/javascript">
function delayed_submit(object) {
if (navigator.userAgent.indexOf('MSIE') == -1) {
var b = c = new Date();
while ((b.getTime() - c.getTime()) < 100) {
b = new Date();
}
//window.setTimeout(function() {object.submit(); console.log('s');}, 300);
}
}
var gnb_service = 'movie';
var gnb_logout = 'http://movie.naver.com/movie/sdb/rank/rmovie.nhn%3Fsel%3Dpnt%26date%3D20200303';
var gnb_template = "gnb_utf8"; /* https://ssl.pstatic.net/static.gn/templates/gnb_utf8.nhn */
var gnb_brightness=3;
var gnb_response = true;
</script>
<a name="gnb_top"></a>
<!-- skip navigation -->
<div id="u_skip">
<a href="#header" onclick="document.getElementById('header').tabIndex=-1;document.getElementById('header').focus();return false;"><span>메인 메뉴로 바로가기</span></a>
<a href="#content" id="gnb_goContent" onclick="document.getElementById('content').tabIndex=-1;document.getElementById('content').focus();return false;"><span>본문으로 바로가기</span></a>
</div>
<!-- //skip navigation -->
<!-- GNB -->
<div class="gnb_container">
<div class="gnb_content">
<div class="gnb_box">
<div class="gnb_wrap">
<div id="gnb" onload="javascript:getGNB();">
<script charset="utf-8" src="https://ssl.pstatic.net/static.gn/templates/gnb_utf8.nhn" type="text/javascript"></script>
</div>
</div>
<!-- 검색창 -->
<form action="/movie/search/result.nhn" id="jSearchForm" method="get" style="margin:0;display:none;">
<input maxlength="100" name="query" title="영화검색" type="text"/>
<input name="section" type="hidden" value="all"/>
</form>
<fieldset class="srch_area" id="jSearchArea">
<legend><span class="blind">영화검색 영역</span></legend>
<div class="srch_field_on _view">
<span class="ipt_srch">
<label for="ipt_tx_srch" id="search_placeholder">영화검색</label>
<input accesskey="s" autocomplete="off" class="ipt_tx_srch" id="ipt_tx_srch" maxlength="100" name="query" style="ime-mode:active;" type="text"/>
<span class="align"></span>
<span class="auto_tx"><a href="#" title="자동완성 펼치기"><img alt="자동완성 펼치기" height="4" src="https://ssl.pstatic.net/static/movie/2012/06/srch_arrow_down.gif" title="자동완성 펼치기" width="7"/></a></span>
</span>
<button class="btn_srch" onclick="clickcr(this, 'GNB.search', '', '', event); delayed_submit(this);" title="검색" type="submit"><span class="blind">검색</span></button>
<!-- 자동 완성 영역임 #autocomplate_template-->
</div>
</fieldset>
<!-- //검색창 -->
</div>
</div>
</div>
<!-- //GNB -->
<!-- nClicks -->
<script type="text/javascript">var nsc = "movie.sdb";</script>
<script src="/common/js/clickcr.js" type="text/javascript"></script>
<!-- // nClicks -->
<!-- //GNB -->
<!-- LNB -->
<!-- header -->
<div id="header">
<h1 class="svc_name">
<a class="ci_logo" href="http://www.naver.com/" id="lnb_gonaver" onclick="clickcr(this, 'LNB.naver', '', '', event);" title="naver로 바로가기"><img alt="NAVER" height="13" src="https://ssl.pstatic.net/static/movie/2013/07/logo_ci.png" width="62"/></a>
<a class="svc_logo" href="/" onclick="clickcr(this, 'LNB.movie', '', '', event);" title="영화서비스홈으로 바로가기"><img alt="영화" height="19" src="https://ssl.pstatic.net/static/movie/2012/06/logo_svc.png" width="34"/></a>
</h1>
<div class="scrollbar scrollbar-noscript" id="scrollbar">
<div class="scrollbar-box">
<div class="scrollbar-content">
<div class="in_scroll">
<ul class="navi">
<li>
<a class="menu01" href="/" onclick="clickcr(this, 'LNB.home', '', '', event);" title="영화홈"><strong>영화홈</strong></a>
</li>
<li>
<a class="menu02" href="/movie/running/current.nhn" onclick="clickcr(this, 'LNB.movies', '', '', event);" title="상영작·예정작"><strong>상영작·예정작</strong></a>
<ul class="navi_sub" style="display:none">
<li><a class="sub2_1" href="/movie/running/current.nhn" onclick="clickcr(this, 'LNB.now', '', '', event);" title="현재 상영영화"><em>현재 상영영화</em></a></li>
<li><a class="sub2_2" href="/movie/running/premovie.nhn" onclick="clickcr(this, 'LNB.soon', '', '', event);" title="개봉 예정영화"><em>개봉 예정영화</em></a></li>
<li><a class="sub2_4" href="/movie/running/movieclip.nhn" onclick="clickcr(this, 'LNB.tailer', '', '', event);" title="예고편"><em>예고편</em></a></li>
</ul>
</li>
<li>
<a class="menu03_on" href="/movie/sdb/rank/rmovie.nhn" onclick="clickcr(this, 'LNB.db', '', '', event);" title="영화랭킹"><strong>영화랭킹</strong></a>
<ul class="navi_sub" style="display:block">
<li><a class="sub3_1_on" href="/movie/sdb/rank/rmovie.nhn" onclick="clickcr(this, 'LNB.rank', '', '', event);" title="랭킹"><em>랭킹</em></a></li>
<li><a class="sub3_2" href="/movie/sdb/browsing/bmovie_nation.nhn" onclick="clickcr(this, 'LNB.dir', '', '', event);" title="디렉토리"><em>디렉토리</em></a></li>
</ul>
</li>
<li>
<a class="menu05" href="/movie/bi/mi/reserve.nhn" onclick="clickcr(this, 'LNB.ticket', '', '', event);" title="예매"><strong>예매</strong></a>
<ul class="navi_sub" style="display:none">
<li><a class="sub5_1" href="http://ticket.movie.naver.com/Ticket/Reserve.aspx" onclick="clickcr(this, 'LNB.buy', '', '', event);" title="예매하기"><em>예매하기</em></a></li>
<li><a class="sub5_2" href="http://ticket.movie.naver.com/Order/OrderList.aspx" onclick="clickcr(this, 'LNB.check', '', '', event);" title="예매확인·취소"><em>예매확인·취소</em></a></li>
<li><a class="sub5_3" href="http://ticket.movie.naver.com/Coupon/Ticket.aspx" onclick="clickcr(this, 'LNB.disticket', '', '', event);" title="예매권·할인권 등록"><em>예매권·할인권 등록</em></a></li>
<li><a class="sub5_4" href="http://ticket.movie.naver.com/Discount/DiscountCard.aspx" onclick="clickcr(this, 'LNB.discard', '', '', event);" title="할인카드안내·등록"><em>할인카드안내·등록</em></a></li>
<li><a class="sub5_5" href="http://help.naver.com/ops/step2/faq.nhn?parentId=77&depth=2" onclick="clickcr(this, 'LNB.service', '', '', event);" target="_blank" title="이용안내"><em>이용안내</em></a></li>
</ul>
</li>
<li>
<a class="menu07" href="/movie/point/af/list.nhn" onclick="clickcr(this, 'LNB.comm', '', '', event);" title="평점"><strong>평점</strong></a>
<ul class="navi_sub" style="display:none">
<li><a class="sub7_1" href="/movie/point/af/list.nhn" onclick="clickcr(this, 'LNB.rating', '', '', event);" title="네티즌 평점"><em>네티즌 평점</em></a></li>
<li><a class="sub7_2" href="/movie/board/review/list.nhn" onclick="clickcr(this, 'LNB.review', '', '', event);" title="네티즌 리뷰"><em>네티즌 리뷰</em></a></li>
</ul>
</li>
<li>
<a class="menu08" href="http://serieson.naver.com/movie/home.nhn" onclick="clickcr(this, 'LNB.download', '', '', event);" target="_blank" title="다운로드"><strong>다운로드</strong></a>
</li>
<li class="nav_indi">
<a href="http://tv.naver.com/indiecinema" target="_blank" title="인디극장 UP"><strong>인디극장 UP</strong></a><!-- N=a:LNB.indie -->
</li>
</ul>
<!-- div class="view_mode">
<a href="#" title="" class="normal_on"><em>1단 보기</em></a>
<a href="#" title="" class="wide_off"><em>2단 보기</em></a>
</div -->
</div>
</div>
</div>
<div class="scrollbar-v">
<div class="scrollbar-button-up"></div>
<div class="scrollbar-track">
<div class="scrollbar-thumb"></div>
</div>
<div class="scrollbar-button-down"></div>
</div>
</div>
</div>
<!-- //header -->
<!-- //LNB -->
<div id="container">
<!-- content -->
<div id="content">
<div class="article">
<div class="old_layout old_super_db">
<h3 class="h_db_rank"><strong class="blind">랭킹</strong></h3>
<ul class="tab_db_rank">
<li><a class="db_tab01_on" href="/movie/sdb/rank/rmovie.nhn" title="영화"><em>영화</em></a></li>
<li><a class="db_tab02" href="/movie/sdb/rank/rpeople.nhn" title="영화인"><em>영화인</em></a></li>
<!-- li><a href="/movie/sdb/rank/rfestival.nhn" title="영화제" class="db_tab03"><em>영화제</em></a></li -->
<!-- li><a href="/movie/sdb/rank/rcompany.nhn" title="영화사" class="db_tab04"><em>영화사</em></a></li -->
<!-- li><a href="/movie/sdb/rank/rnews.nhn" title="기자영화" class="db_tab05"><em>기자</em></a></li -->
<!-- li><a href="/movie/sdb/rank/rreview.nhn" title="네티즌리뷰" class="db_tab06"><em>네티즌리뷰</em></a></li -->
</ul>
<!-- Content Body -->
<div class="type_1" id="cbody">
<div id="old_content">
<h4 class="tlt"><img alt="영화랭킹" height="15" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tlt_ranking_movie.gif" width="65"/>
<div class="form_search">
<!-- onChange 걸어야함 -->
<select class="select_type_1" name="" onchange="document.location.href='rmovie.nhn?sel=pnt&date=20200303&tg='+this.value" size="1" style="width:120px;" title="카테고리 선택">
<option selected="" value="0">전체</option>
<option value="1">드라마</option>
<option value="2">판타지</option>
<option value="4">공포</option>
<option value="5">멜로/애정/로맨스</option>
<option value="6">모험</option>
<option value="7">스릴러</option>
<option value="8">느와르</option>
<option value="10">다큐멘터리</option>
<option value="11">코미디</option>
<option value="12">가족</option>
<option value="13">미스터리</option>
<option value="14">전쟁</option>
<option value="15">애니메이션</option>
<option value="16">범죄</option>
<option value="17">뮤지컬</option>
<option value="18">SF</option>
<option value="19">액션</option>
</select>
</div>
</h4>
<!-- 탭메뉴 -->
<div class="tab_type_6">
<ul><!--활성화된 탭의 이미지는 _on.gif 입니다-->
<li><a href="rmovie.nhn?sel=cnt&date=20200303"><img alt="조회순" height="28" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tab_movie_1_off.gif" width="112"/></a></li>
<li><a href="rmovie.nhn?sel=cur&date=20200303"><img alt="평점순(현재상영영화)" height="28" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tab_movie_2_off.gif" width="126"/></a></li>
<li><a href="rmovie.nhn?sel=pnt&date=20200303"><img alt="평점순(모든영화)" height="28" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tab_movie_3_on.gif" width="126"/></a></li>
</ul>
<p class="r_date">2020.03.03 <a href="rmovie.nhn?sel=pnt&tg=0&date=20200302"><img alt="prev" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/btn_prev.gif" style="margin-right:1px;" width="13"/></a><a href="rmovie.nhn?sel=pnt&tg=0&date=20200304"><img alt="next" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/btn_next.gif" width="13"/></a></p>
</div>
<!-- //탭메뉴 -->
<!-- 랭킹 리스트 -->
<table cellspacing="0" class="list_ranking">
<caption class="blind">랭킹 테이블</caption>
<col width="6%"/><col width="*"/><col width="15%"/><col width="3%"/><col width="12%"/><col width="2%"/><col width="5%"/>
<thead>
<tr>
<th scope="col">순위</th>
<th scope="col">영화명</th>
<th colspan="3" scope="col">평점</th>
<th colspan="2" scope="col">변동폭</th>
</tr>
</thead>
<tbody>
<tr><td class="blank01" colspan="8"></td></tr>
<!-- 예제
<tr>
<td class="ac"><img src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g50.gif" alt="50" width="14" height="13"></td>
<td class="title"><a href="#">트랜스포머</a></td>
<td class="ac"><img src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" alt="down" width="7" height="10"></td>
<td class="range ac">7</td>
</tr>
-->
<tr>
<td class="ac"><img alt="01" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r01.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=171539" title="그린 북">그린 북</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:96.00000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.60</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=171539">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="02" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r02.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=174830" title="가버나움">가버나움</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.9000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.59</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=174830">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="03" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r03.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=144906" title="베일리 어게인">베일리 어게인</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.20000457763672%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.52</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=144906">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="04" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r04.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=179518" title="주전장">주전장</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.20000457763672%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.52</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=179518">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="05" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r05.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=181710" title="포드 V 페라리">포드 V 페라리</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.10000228881836%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.51</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=181710">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="06" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r06.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=169240" title="아일라">아일라</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.89999771118164%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.49</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=169240">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="07" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r07.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=151196" title="원더">원더</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.89999771118164%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.49</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=151196">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="08" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r08.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=157243" title="당갈">당갈</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.70000267028809%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.47</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=157243">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="09" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r09.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17421" title="쇼생크 탈출">쇼생크 탈출</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.39999580383301%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.44</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17421">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="010" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r10.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10200" title="터미네이터 2:오리지널">터미네이터 2:오리지널</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.30000305175781%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.43</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10200">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr><td class="line01" colspan="8"></td></tr>
<tr>
<td class="ac"><img alt="11" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g11.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=156464" title="보헤미안 랩소디">보헤미안 랩소디</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.20000076293945%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.42</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=156464">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="12" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g12.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=154667" title="덕구">덕구</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=154667">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="13" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g13.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10016" title="나 홀로 집에">나 홀로 집에</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10016">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="14" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g14.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=69105" title="월-E">월-E</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=69105">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="15" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g15.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=35901" title="살인의 추억">살인의 추억</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.99999618530273%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.40</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=35901">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="16" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g16.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10002" title="빽 투 더 퓨쳐">빽 투 더 퓨쳐</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.99999618530273%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.40</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10002">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="17" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g17.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=22126" title="인생은 아름다워">인생은 아름다워</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=22126">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="18" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g18.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=24452" title="매트릭스">매트릭스</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=24452">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="19" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g19.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18988" title="라이언 일병 구하기">라이언 일병 구하기</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18988">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="up" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>
<tr>
<td class="ac"><img alt="20" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g20.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10102" title="사운드 오브 뮤직">사운드 오브 뮤직</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10102">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="down" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>
<tr><td class="line01" colspan="8"></td></tr>
<tr>
<td class="ac"><img alt="21" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g21.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=82432" title="헬프">헬프</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=82432">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="22" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g22.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17159" title="포레스트 검프">포레스트 검프</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17159">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="23" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g23.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=181700" title="안녕 베일리">안녕 베일리</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=181700">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="24" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g24.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=29217" title="글래디에이터">글래디에이터</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=29217">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="25" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g25.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=106360" title="위대한 쇼맨">위대한 쇼맨</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=106360">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="26" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g26.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=32686" title="센과 치히로의 행방불명">센과 치히로의 행방불명</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=32686">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="27" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g27.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=66463" title="토이 스토리 3">토이 스토리 3</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=66463">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="28" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g28.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=136900" title="어벤져스: 엔드게임">어벤져스: 엔드게임</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=136900">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="29" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g29.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=35939" title="클래식">클래식</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=35939">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="30" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g30.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=163788" title="알라딘">알라딘</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=163788">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr><td class="line01" colspan="8"></td></tr>
<tr>
<td class="ac"><img alt="31" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g31.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=92125" title="헌터 킬러">헌터 킬러</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=92125">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="32" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g32.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10048" title="죽은 시인의 사회">죽은 시인의 사회</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10048">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="33" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g33.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=161850" title="아이 캔 스피크">아이 캔 스피크</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=161850">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="34" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g34.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17170" title="레옹">레옹</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17170">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="35" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g35.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=134899" title="동주">동주</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=134899">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="36" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g36.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=31796" title="반지의 제왕: 왕의 귀환">반지의 제왕: 왕의 귀환</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=31796">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="37" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g37.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18847" title="타이타닉">타이타닉</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18847">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="38" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g38.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=31162" title="캐스트 어웨이">캐스트 어웨이</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=31162">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="39" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g39.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=12482" title="여인의 향기">여인의 향기</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=12482">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="40" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g40.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=34324" title="집으로...">집으로...</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=34324">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr><td class="line01" colspan="8"></td></tr>
<tr>
<td class="ac"><img alt="41" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g41.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17541" title="굿바이 마이 프랜드">굿바이 마이 프랜드</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17541">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="42" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g42.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18543" title="서유기 2 - 선리기연">서유기 2 - 선리기연</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18543">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="43" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g43.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=130850" title="주토피아">주토피아</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=130850">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="44" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g44.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=189111" title="두 교황">두 교황</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=189111">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="45" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g45.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=19079" title="굿 윌 헌팅">굿 윌 헌팅</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=19079">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="46" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g46.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=37886" title="클레멘타인">클레멘타인</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=37886">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="47" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g47.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=147092" title="히든 피겨스">히든 피겨스</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=147092">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="48" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g48.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=73372" title="세 얼간이">세 얼간이</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=73372">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>
<tr>
<td class="ac"><img alt="49" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g49.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=14450" title="쉰들러 리스트">쉰들러 리스트</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.4000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.34</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=14450">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="up" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>
<tr>
<td class="ac"><img alt="50" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g50.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=76667" title="울지마 톤즈">울지마 톤즈</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.4000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.34</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=76667">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="down" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>
<tr><td class="blank01" colspan="8"></td></tr>
</tbody>
</table>
<!-- 페이지 네비게이션 시작 -->
<div class="pagenavigation" style="margin-bottom:21px">
<table cellpadding="0" cellspacing="0">
<tr>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=1"><span style="color:#FF7632">1</span></a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=2">2</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=3">3</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=4">4</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=5">5</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=6">6</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=7">7</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=8">8</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=9">9</a></td>
<td onmouseout='this.style.background=""' onmouseover='this.style.background="#F7F7F7"' style="padding:2 4 0 4;cursor:pointer"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=10">10</a></td>
<td class="next" nowrap="" style="padding:1 8 1 8"><a href="/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303&page=2">다음</a></td>
</tr>
</table>
</div>
<!-- 페이지 네비게이션 끝 -->
<!-- //랭킹 리스트 -->
<span class="txt_mark">※</span> <span class="txt_term">집계기준 : <strong>2020.03.03</strong>일 까지 네이버영화에 수록 된 영화의 관람 후 평점</span>
<!-- 네이버 영화평점랭킹 선정방법 -->
<div class="box_choice_way">
<img alt="네이버 영화평점랭킹 선정방법" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_01.gif" width="154"/>
<dl class="choice_way">
<dt><img alt="집계기준" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_01_1.gif" width="39"/></dt><dd>전국기준 현재 상영되고 있는 영화 중 <em>평점 응답자가 <strong>300명</strong> 이상</em>인 경우</dd>
<dt><img alt="집계기간" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_01_2.gif" width="40"/></dt><dd>전일까지의 누적 평점</dd>
<dt><img alt="표본오차" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_01_3.gif" width="40"/></dt><dd><em>95% 신뢰수준에서 ±5.65</em></dd>
</dl>
<table cellpadding="0" cellspacing="0" class="choice_way_data">
<col width="48"/><col width="73"/><col width="73"/><col width="73"/><col width="73"/><col width="73"/><col width="110"/>
<tr>
<th class="bgwhite" scope="row">구분</th>
<td>N</td>
<td>Range</td>
<td>Minimum</td>
<td>Maximum</td>
<td>Mean</td>
<td>Std.Deviation</td>
</tr>
<tr>
<th class="bgwhite" scope="row">평점</th>
<td class="range ac">26</td>
<td class="range ac">4.39</td>
<td class="range ac">4.75</td>
<td class="range ac">9.14</td>
<td class="range ac">7.59</td>
<td class="range ac">7.59</td>
</tr>
</table>
<dl class="choice_way_qna">
<dt><img alt="왜 평점응답자를 300명 이상으로 정하나요?" height="12" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_02.gif" width="221"/></dt>
<dd>일반적인 여론조사에서의 최소 응답자수가 300명이기 때문입니다.</dd>
<dt><img alt="표본오차 95% 신뢰수준에서 ±5.65가 무슨 뜻인가요?" height="12" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_03.gif" width="271"/></dt>
<dd>동일한 실험을 100번 했을 경우 95번은 ±5.65% 범위 내에서 동일한 결과가 나온다는 말입니다.</dd>
<dt><img alt="Descriptive Statistics는 어떻게 보는건가요?" height="12" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/txt_movie_ranking_04.gif" width="234"/></dt>
<dd>
<ul>
<li>N=Case의 숫자</li>
<li>Range=응답자의 범위</li>
<li>Minimum=최소 응답값</li>
<li>Maximum=최대응답값</li>
<li>Mean=평균</li>
<li>Std.Deviation=표준편자</li>
</ul>
</dd>
</dl>
</div>
<!-- //네이버 영화평점랭킹 선정방법 -->
<!-- 탑버튼 -->
<div class="go_top">
<a href="#gnb_top"><img alt="TOP" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/common/btn_top.gif" width="30"/></a>
</div>
<!-- //탑버튼 -->
<img alt="" class="clear" src="https://ssl.pstatic.net/imgmovie/2007/img/common/blank.gif"/>
<!-- //Content Body -->
<script src="/common/js/jindo2.js" type="text/javascript"></script>
</div>
<div id="assistant">
<!-- 우측 메뉴 -->
<!-- 영화 인기검색어 -->
<div class="box_type_1 mb_8">
<h3><img alt="영화 인기검색어" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tlt_r_best_movie.gif" width="75"/></h3>
<ul class="r_ranking">
<li class="ranking01">
<a class="b" href="/movie/bi/mi/basic.nhn?code=189368" onclick="clickcr(this,'pop.list','189368','1',event);" title="콰이어트 플레이스 2"><span class="blind">1위</span>콰이어트 플레이스 ..</a>
<span class="rank">
<img alt="순위 변동 없음" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/>0</span>
<li class="ranking02">
<a href="/movie/bi/mi/basic.nhn?code=187322" onclick="clickcr(this,'pop.list','187322','2',event);" title="크루엘라"><span class="blind">2위</span>크루엘라</a>
<span class="rank">
<img alt="순위 변동 없음" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/>0</span>
<li class="ranking03">
<a href="/movie/bi/mi/basic.nhn?code=194205" onclick="clickcr(this,'pop.list','194205','3',event);" title="발신제한"><span class="blind">3위</span>발신제한</a>
<span class="rank">
<img alt="순위 상승" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/>1</span>
<li class="ranking04">
<a href="/movie/bi/mi/basic.nhn?code=202903" onclick="clickcr(this,'pop.list','202903','4',event);" title="루카"><span class="blind">4위</span>루카</a>
<span class="rank">
<img alt="순위 하락" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/>1</span>
<li class="ranking05">
<a href="/movie/bi/mi/basic.nhn?code=204624" onclick="clickcr(this,'pop.list','204624','5',event);" title="킬러의 보디가드 2"><span class="blind">5위</span>킬러의 보디가드 2</a>
<span class="rank">
<img alt="순위 상승" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/>1</span>
</li></li></li></li></li></ul>
<!--[D] 더보기 위치 이동 -->
<a class="more" href="/movie/sdb/rank/rmovie.nhn" onclick="clickcr(this,'pop.more','','',event);">더보기</a>
<p class="term">2021.06.24</p>
</div>
<!-- 영화인 인기검색어 -->
<div class="box_type_1 mb_8">
<h3><img alt="영화인 인기검색어" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/super_db/tlt_r_best_star.gif" width="85"/></h3>
<ul class="r_ranking">
<li class="ranking01">
<a class="b" href="/movie/bi/pi/basic.nhn?st=1&code=135256" onclick="clickcr(this,'peo.list','135256','1',event);" title="엠마 스톤"><span class="blind">1위</span>엠마 스톤</a>
<span class="rank">
<img alt="" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/>0</span>
<li class="ranking02">
<a href="/movie/bi/pi/basic.nhn?st=1&code=53079" onclick="clickcr(this,'peo.list','53079','2',event);" title="에밀리 블런트"><span class="blind">2위</span>에밀리 블런트</a>
<span class="rank">
<img alt="" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/>0</span>
<li class="ranking03">
<a href="/movie/bi/pi/basic.nhn?st=1&code=43284" onclick="clickcr(this,'peo.list','43284','3',event);" title="마동석"><span class="blind">3위</span>마동석</a>
<span class="rank">
<img alt="" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/>1</span>
<li class="ranking04">
<a href="/movie/bi/pi/basic.nhn?st=1&code=3010" onclick="clickcr(this,'peo.list','3010','4',event);" title="가이 리치"><span class="blind">4위</span>가이 리치</a>
<span class="rank">
<img alt="" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/>1</span>
<li class="ranking05">
<a href="/movie/bi/pi/basic.nhn?st=1&code=404" onclick="clickcr(this,'peo.list','404','5',event);" title="엠마 톰슨"><span class="blind">5위</span>엠마 톰슨</a>
<span class="rank">
<img alt="" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/>0</span>
</li></li></li></li></li></ul>
<a class="more" href="/movie/sdb/rank/rpeople.nhn" onclick="clickcr(this,'peo.more','','',event);">더보기</a>
<p class="term">2021.06.24</p>
</div>
<!--티켓예매순-->
<div class="box_type_1 mb_8">
<h3><img alt="티켓예매순" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/running/tlt_r_reservation.gif" width="51"/></h3>
<div id="reserveRanking0" style="display:block">
<ul class="r_ranking">
<li class="ranking01"><a class="b" href="/movie/bi/mi/basic.nhn?code=194205" onclick="clickcr(this,'tck.list','194205','1',event);" title="발신제한"><span class="blind">1위</span>발신제한</a><span class="ratio check">29.45%</span></li>
<li class="ranking02"><a href="/movie/bi/mi/basic.nhn?code=204624" onclick="clickcr(this,'tck.list','204624','2',event);" title="킬러의 보디가드 2"><span class="blind">2위</span>킬러의 보디가드 2</a> <span class="ratio">18.85%</span></li>
<li class="ranking03"><a href="/movie/bi/mi/basic.nhn?code=202903" onclick="clickcr(this,'tck.list','202903','3',event);" title="루카"><span class="blind">3위</span>루카</a> <span class="ratio">10.45%</span></li>
<li class="ranking04"><a href="/movie/bi/mi/basic.nhn?code=187322" onclick="clickcr(this,'tck.list','187322','4',event);" title="크루엘라"><span class="blind">4위</span>크루엘라</a> <span class="ratio">6.04%</span></li>
<li class="ranking05"><a href="/movie/bi/mi/basic.nhn?code=189368" onclick="clickcr(this,'tck.list','189368','5',event);" title="콰이어트 플레이스 2"><span class="blind">5위</span>콰이어트 플레이스 ..</a> <span class="ratio">4.96%</span></li>
</ul>
<a class="more" href="/movie/sdb/rank/rreserve.nhn" id="ticketRankLink" onclick="clickcr(this,'tck.more','','',event);">더보기</a>
<div class="term_1"><img alt="출처:YES24" height="12" src="https://ssl.pstatic.net/imgmovie/2007/img/common/txt_source_yes24_02.gif" width="54"/><div class="date">2021.06.25</div></div>
</div>
</div>
<!--//티켓예매순-->
<!--박스오피스-->
<div class="box_type_1 mb_8">
<h3><img alt="박스오피스" height="11" src="https://ssl.pstatic.net/imgmovie/2007/img/running/tlt_r_boxoffice.gif" width="51"/></h3>
<ul class="r_ranking box">
<li class="ranking01"><a class="b" href="/movie/bi/mi/basic.nhn?code=189368" onclick="clickcr(this,'box.list','189368','1',event);" title="콰이어트 플레이스 2"><span class="blind">1위</span>콰이어트 플레이스 2</a> <span "="" class="ratio check"><em>271578</em> 명</span></li>
<li class="ranking02"><a href="/movie/bi/mi/basic.nhn?code=187322" onclick="clickcr(this,'box.list','187322','2',event);" title="크루엘라"><span class="blind">2위</span>크루엘라</a> <span class="ratio"><em>162740</em> 명</span></li>
<li class="ranking03"><a href="/movie/bi/mi/basic.nhn?code=202903" onclick="clickcr(this,'box.list','202903','3',event);" title="루카"><span class="blind">3위</span>루카</a> <span class="ratio"><em>115756</em> 명</span></li>
<li class="ranking04"><a href="/movie/bi/mi/basic.nhn?code=190726" onclick="clickcr(this,'box.list','190726','4',event);" title="컨저링3: 악마가 시켰다"><span class="blind">4위</span>컨저링3: 악마가 시켰다</a> <span class="ratio"><em>51062</em> 명</span></li>
<li class="ranking05"><a href="/movie/bi/mi/basic.nhn?code=187849" onclick="clickcr(this,'box.list','187849','5',event);" title="여고괴담 여섯번째 이야기 : 모교"><span class="blind">5위</span>여고괴담 여섯번째 이야기 : 모교</a> <span class="ratio"><em>48533</em> 명</span></li>
</ul>
<a class="more" href="/movie/sdb/rank/rboxoffice.nhn" onclick="clickcr(this,'box.more','','',event);">더보기</a>
<div class="term_1"><span class="cnt">주말관객 기준</span><div class="date">20210618-20210620</div></div>
</div>
<!--//박스오피스-->
</div>
<img alt="" class="clear" src="https://ssl.pstatic.net/imgmovie/2007/img/common/blank.gif"/>
</div>
<!-- //Content Body -->
</div>
</div>
</div>
<!-- //content -->
</div>
<!-- //container -->
<!-- Footer -->
<script src="/common/js/jindo/component/1.0.2/jindo.Component.js" type="text/javascript"></script>
<script src="/common/js/jindo/component/1.0.2/jindo.UIComponent.js" type="text/javascript"></script>
<!-- footer -->
<div id="footer">
<div class="in_footer">
<div class="foot_con">
<ul>
<li class="first"><a href="http://www.naver.com/rules/service.html" onclick="clickcr(this, 'fot.agreement', '', '', event);" target="_blank">이용약관</a></li>
<li><a href="http://www.naver.com/rules/privacy.html" onclick="clickcr(this, 'fot.privacy', '', '', event);" target="_blank"><strong>개인정보처리방침</strong></a></li>
<li><a href="http://www.naver.com/rules/disclaimer.html" onclick="clickcr(this, 'fot.disclaimer', '', '', event);" target="_blank">책임의 한계와 법적고지</a></li>
<li><a href="https://help.naver.com/support/service/main.nhn?serviceNo=800" onclick="clickcr(this, 'fot.help', '', '', event);" target="_blank">영화 고객센터</a></li>
</ul>
<p class="info">본 콘텐츠의 저작권은 저작권자 또는 제공처에 있으며, 이를 무단 이용하는 경우 저작권법 등에 따라 법적 책임을 질 수 있습니다.</p>
<p class="info">
사업자등록번호 : 220-81-62517<span>통신판매업 신고번호</span> : 경기성남 제 2006 - 692호<span>대표이사 : 한성숙</span><span><a href="http://www.ftc.go.kr/info/bizinfo/communicationList.jsp" onclick="clickcr(this, 'fot.bizinfo', '', '', event);">사업자등록정보 확인</a></span><br/>
주소 : 경기도 성남시 분당구 불정로 6 네이버 그린팩토리 <span>대표전화 : 1588-3820</span>
</p>
<address>
<a class="logo" href="http://www.navercorp.com" onclick="clickcr(this, 'fot.nhn', '', '', event);" target="_blank"><img alt="NAVER" height="11" src="https://ssl.pstatic.net/static/movie/2013/07/logo_naver.png" width="63"/></a>
<em>Copyright ©</em>
<a href="http://www.navercorp.com" onclick="clickcr(this, 'fot.corp', '', '', event);" target="_blank">NAVER Corp.</a>
<span>All Rights Reserved.</span>
</address>
</div>
</div>
</div>
<!-- //footer -->
<script type="text/javascript">
if (false) {
var alertType = "NONE";
var koreanTitle = "";
var movieCode = "0";
var userReserveCount = "0";
var todayDatetime = "20210625133847";
var endDatetimeAfterTwoDays = "00000000000000";
if (movieCode > 0) {
openWriteActualPointAlert (alertType, koreanTitle, movieCode, userReserveCount, todayDatetime, endDatetimeAfterTwoDays);
}
}
function openWriteActualPointAlert (alertType, koreanTitle, movieCode, count, today, endDate) {
if (alertType == "ONE") {
setCookieLastUserReserveDate(today, endDate);
if (confirm("관람하신 " + koreanTitle + "에\n평점 등록 시 네이버페이 마일리지 500원 적립!\n지금 평점쓰기 메뉴로 이동하시겠습니까?")) {
top.location.href = "http://movie.naver.com/movie/bi/mi/point.nhn?code=" + movieCode;
}
} else if (alertType == "MORE") {
setCookieLastUserReserveDate(today, endDate);
if (confirm("관람하신 작품에 평점을 등록해주세요\n작품당 네이버페이 마일리지 500원씩 적립!\n평점 미등록작 리스트를 확인하시겠습니까?")) {
top.location.href = "http://ticket.movie.naver.com/Order/OverdueList.aspx";
}
}
}
function setCookieLastUserReserveDate(today, endDate) {
var cookieForNotOpenActualPointPopup = jindo.$Cookie();
cookieForNotOpenActualPointPopup.remove("lastUserReserveDatetime");
cookieForNotOpenActualPointPopup.remove("lastUserReserveCheckDatetime");
cookieForNotOpenActualPointPopup.set("lastUserReserveDatetime", endDate, 9999, "movie.naver.com");
cookieForNotOpenActualPointPopup.set("lastUserReserveCheckDatetime", today, 9999, "movie.naver.com");
}
</script>
<script src="/common/js/lcslog.js" type="text/javascript"></script>
<script src="/common/js/jindo/component/1.0.2/jindo.Component.min.js" type="text/javascript"></script>
<script charset="UTF-8" src="/common/js/vendor/jindo.WatchInput.js" type="text/javascript"></script>
<script charset="UTF-8" src="/common/js/lib/Core.js?20210624141932" type="text/javascript"></script>
<script charset="UTF-8" src="/common/js/lib/LNB.js?20210624141932" type="text/javascript"></script>
<script charset="UTF-8" src="/common/js/lib/Search.js?20210624141932" type="text/javascript"></script>
<script type="text/javascript">
// nhn.movie.Search가 jindo 기반이어서 javascript로 전환함
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", function () {
document.removeEventListener("DOMContentLoaded", arguments.callee, false);
loadFooter();
}, false);
}
// Internet Explorer
else if (document.attachEvent) {
// onreadystatechange 는 모든 브라우저가 반환
document.attachEvent("onreadystatechange", function () {
if (document.readyState == "complete" || document.readyState == 'loaded') {
document.detachEvent("onreadystatechange", arguments.callee);
loadFooter();
}
});
}
function loadFooter() {
var goNaver = document.getElementById("lnb_gonaver");
goNaver.addEventListener("focus", focusonNaverIcon, false);
// LNB - 사용처를 못 찾음
// var oLNB = new nhn.movie.LNB();
// 상단 검색영역
var oSearch = new nhn.movie.Search({
area : "jSearchArea",
autosearch : "https://auto-movie.naver.com/ac?q_enc=UTF-8&st=1&r_lt=1&n_ext=1&t_koreng=1&r_format=json&r_enc=utf-8&r_unicode=0&r_escape=1&q=",
movelink : "/movie/bi/mi/basic.nhn?code=",
peoplelink : "/movie/bi/pi/basic.nhn?code="
});
getGNB();
}
function focusonNaverIcon(event) {
event.preventDefault(); // jindo.$Event.CANCEL_DEFAULT 와 동일한 기능으로 추측됨
document.getElementById('ipt_tx_srch').value= "";
document.getElementById('search_placeholder').style = "display:inline;";
if (document.getElementById('jAutoComplate') != undefined && document.getElementById('jAutoComplate') !== null) {
document.getElementById('jAutoComplate').style = "display:none;"
}
}
window.addEventListener('pageshow', function(event) { lcs_do(); });
document.addEventListener('click', function (event) {
var welSource = event.srcElement; // jindo.$Element(oEvent.element);
if (!document.getElementById("gnb").contains(welSource)) {
gnbAllLayerClose();
}
});
</script>
<!-- //Footer -->
</div>
</body>
</html>
Process finished with exit code 0
select_one(선택자)
- CSS 선택자를 인자로 넣으면 해당 선택자에 맞는 HTML 태그가 하나 저장된다.
- 개발자 도구를 열고 원하는 태그를 우클릭한 후에 Copy -> Copy Selector를 클릭하면 쉽게 선택자를 가져올 수 있다.
- select_one으로 태그를 가져와서 출력해보자!
selectone = soup.select_one('#old_content > table > tbody > tr:nth-child(8) > td.title > div > a')
print(selectone)
- 아래와 같은 결과가 나온다
<a href="/movie/bi/mi/basic.nhn?code=151196" title="원더">원더</a>
['속성명']
- 만약 위의 결과에서 태그의 속성을 가져오고 싶으면 아래와 같이 ['속성명']을 붙여주면 된다.
selectone = soup.select_one('#old_content > table > tbody > tr:nth-child(8) > td.title > div > a')
print(selectone['href'])
/movie/bi/mi/basic.nhn?code=151196
select_one('요소[속성명="속성값"])
- 특정한 속성값을 가진 요소를 가져올 수 있는 방법이다.
selectone = soup.select_one('meta[property = "og:url"]')
print(selectone)
<meta content="https://movie.naver.com/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303" property="og:url"/>
select(선택자)
- 인자의 선택자를 가지고 있는 모든 태그들이 리스트로 반환된다!
select = soup.select('#old_content > table > tbody > tr')
print(select)
[<tr><td class="blank01" colspan="8"></td></tr>, <tr>
<td class="ac"><img alt="01" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r01.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=171539" title="그린 북">그린 북</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:96.00000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.60</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=171539">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="02" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r02.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=174830" title="가버나움">가버나움</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.9000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.59</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=174830">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="03" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r03.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=144906" title="베일리 어게인">베일리 어게인</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.20000457763672%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.52</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=144906">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="04" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r04.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=179518" title="주전장">주전장</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.20000457763672%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.52</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=179518">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="05" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r05.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=181710" title="포드 V 페라리">포드 V 페라리</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:95.10000228881836%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.51</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=181710">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="06" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r06.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=169240" title="아일라">아일라</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.89999771118164%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.49</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=169240">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="07" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r07.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=151196" title="원더">원더</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.89999771118164%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.49</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=151196">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="08" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r08.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=157243" title="당갈">당갈</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.70000267028809%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.47</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=157243">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="09" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r09.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17421" title="쇼생크 탈출">쇼생크 탈출</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.39999580383301%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.44</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17421">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="010" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_r10.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10200" title="터미네이터 2:오리지널">터미네이터 2:오리지널</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.30000305175781%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.43</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10200">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr><td class="line01" colspan="8"></td></tr>, <tr>
<td class="ac"><img alt="11" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g11.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=156464" title="보헤미안 랩소디">보헤미안 랩소디</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.20000076293945%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.42</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=156464">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="12" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g12.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=154667" title="덕구">덕구</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=154667">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="13" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g13.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10016" title="나 홀로 집에">나 홀로 집에</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10016">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="14" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g14.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=69105" title="월-E">월-E</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:94.0999984741211%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.41</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=69105">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="15" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g15.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=35901" title="살인의 추억">살인의 추억</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.99999618530273%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.40</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=35901">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="16" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g16.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10002" title="빽 투 더 퓨쳐">빽 투 더 퓨쳐</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.99999618530273%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.40</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10002">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="17" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g17.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=22126" title="인생은 아름다워">인생은 아름다워</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=22126">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="18" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g18.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=24452" title="매트릭스">매트릭스</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=24452">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="19" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g19.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18988" title="라이언 일병 구하기">라이언 일병 구하기</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18988">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="up" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>, <tr>
<td class="ac"><img alt="20" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g20.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10102" title="사운드 오브 뮤직">사운드 오브 뮤직</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10102">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="down" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>, <tr><td class="line01" colspan="8"></td></tr>, <tr>
<td class="ac"><img alt="21" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g21.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=82432" title="헬프">헬프</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=82432">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="22" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g22.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17159" title="포레스트 검프">포레스트 검프</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17159">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="23" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g23.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=181700" title="안녕 베일리">안녕 베일리</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=181700">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="24" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g24.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=29217" title="글래디에이터">글래디에이터</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.90000343322754%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.39</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=29217">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="25" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g25.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=106360" title="위대한 쇼맨">위대한 쇼맨</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=106360">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="26" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g26.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=32686" title="센과 치히로의 행방불명">센과 치히로의 행방불명</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=32686">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="27" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g27.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=66463" title="토이 스토리 3">토이 스토리 3</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=66463">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="28" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g28.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=136900" title="어벤져스: 엔드게임">어벤져스: 엔드게임</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=136900">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="29" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g29.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=35939" title="클래식">클래식</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=35939">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="30" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g30.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=163788" title="알라딘">알라딘</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.80000114440918%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.38</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=163788">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr><td class="line01" colspan="8"></td></tr>, <tr>
<td class="ac"><img alt="31" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g31.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=92125" title="헌터 킬러">헌터 킬러</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=92125">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="32" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g32.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=10048" title="죽은 시인의 사회">죽은 시인의 사회</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=10048">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="33" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g33.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=161850" title="아이 캔 스피크">아이 캔 스피크</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=161850">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="34" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g34.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17170" title="레옹">레옹</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17170">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="35" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g35.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=134899" title="동주">동주</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=134899">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="36" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g36.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=31796" title="반지의 제왕: 왕의 귀환">반지의 제왕: 왕의 귀환</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.69999885559082%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.37</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=31796">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="37" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g37.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18847" title="타이타닉">타이타닉</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18847">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="38" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g38.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=31162" title="캐스트 어웨이">캐스트 어웨이</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=31162">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="39" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g39.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=12482" title="여인의 향기">여인의 향기</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=12482">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="40" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g40.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=34324" title="집으로...">집으로...</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.59999656677246%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.36</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=34324">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr><td class="line01" colspan="8"></td></tr>, <tr>
<td class="ac"><img alt="41" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g41.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=17541" title="굿바이 마이 프랜드">굿바이 마이 프랜드</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=17541">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="42" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g42.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=18543" title="서유기 2 - 선리기연">서유기 2 - 선리기연</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=18543">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="43" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g43.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=130850" title="주토피아">주토피아</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=130850">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="44" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g44.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=189111" title="두 교황">두 교황</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=189111">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="45" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g45.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=19079" title="굿 윌 헌팅">굿 윌 헌팅</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=19079">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="46" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g46.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=37886" title="클레멘타인">클레멘타인</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=37886">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="47" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g47.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=147092" title="히든 피겨스">히든 피겨스</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=147092">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="48" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g48.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=73372" title="세 얼간이">세 얼간이</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.50000381469727%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.35</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=73372">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="na" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_na_1.gif" width="7"/></td>
<td class="range ac">0</td>
</tr>, <tr>
<td class="ac"><img alt="49" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g49.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=14450" title="쉰들러 리스트">쉰들러 리스트</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.4000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.34</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=14450">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="up" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_up_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>, <tr>
<td class="ac"><img alt="50" height="13" src="https://ssl.pstatic.net/imgmovie/2007/img/common/bullet_r_g50.gif" width="14"/></td>
<td class="title">
<div class="tit5">
<a href="/movie/bi/mi/basic.nhn?code=76667" title="울지마 톤즈">울지마 톤즈</a>
</div>
</td>
<!-- 평점순일 때 평점 추가하기 -->
<td><div class="point_type_2"><div class="mask" style="width:93.4000015258789%"><img alt="" height="14" src="https://ssl.pstatic.net/imgmovie/2007/img/common/point_type_2_bg_on.gif" width="79"/></div></div></td>
<td class="point">9.34</td>
<td class="ac"><a class="txt_link" href="/movie/point/af/list.nhn?st=mcode&sword=76667">평점주기</a></td>
<!----------------------------------------->
<td class="ac"><img alt="down" class="arrow" height="10" src="https://ssl.pstatic.net/imgmovie/2007/img/common/icon_down_1.gif" width="7"/></td>
<td class="range ac">1</td>
</tr>, <tr><td class="blank01" colspan="8"></td></tr>]
- 아래처럼 select를 사용한 후에 select_one을 사용해서 찾은 태그들에서 원하는 태그를 솎아낼 수 있다.
select = soup.select('#old_content > table > tbody > tr')
for i in select:
a = i.select_one('td.title > div > a')
print(a)
- 원하는 결과를 여러개를 가져올 수 있다!
None
<a href="/movie/bi/mi/basic.nhn?code=171539" title="그린 북">그린 북</a>
<a href="/movie/bi/mi/basic.nhn?code=174830" title="가버나움">가버나움</a>
<a href="/movie/bi/mi/basic.nhn?code=144906" title="베일리 어게인">베일리 어게인</a>
<a href="/movie/bi/mi/basic.nhn?code=179518" title="주전장">주전장</a>
<a href="/movie/bi/mi/basic.nhn?code=181710" title="포드 V 페라리">포드 V 페라리</a>
<a href="/movie/bi/mi/basic.nhn?code=169240" title="아일라">아일라</a>
<a href="/movie/bi/mi/basic.nhn?code=151196" title="원더">원더</a>
<a href="/movie/bi/mi/basic.nhn?code=157243" title="당갈">당갈</a>
<a href="/movie/bi/mi/basic.nhn?code=17421" title="쇼생크 탈출">쇼생크 탈출</a>
<a href="/movie/bi/mi/basic.nhn?code=10200" title="터미네이터 2:오리지널">터미네이터 2:오리지널</a>
None
<a href="/movie/bi/mi/basic.nhn?code=156464" title="보헤미안 랩소디">보헤미안 랩소디</a>
<a href="/movie/bi/mi/basic.nhn?code=154667" title="덕구">덕구</a>
<a href="/movie/bi/mi/basic.nhn?code=10016" title="나 홀로 집에">나 홀로 집에</a>
<a href="/movie/bi/mi/basic.nhn?code=69105" title="월-E">월-E</a>
<a href="/movie/bi/mi/basic.nhn?code=35901" title="살인의 추억">살인의 추억</a>
<a href="/movie/bi/mi/basic.nhn?code=10002" title="빽 투 더 퓨쳐">빽 투 더 퓨쳐</a>
<a href="/movie/bi/mi/basic.nhn?code=22126" title="인생은 아름다워">인생은 아름다워</a>
<a href="/movie/bi/mi/basic.nhn?code=24452" title="매트릭스">매트릭스</a>
<a href="/movie/bi/mi/basic.nhn?code=18988" title="라이언 일병 구하기">라이언 일병 구하기</a>
<a href="/movie/bi/mi/basic.nhn?code=10102" title="사운드 오브 뮤직">사운드 오브 뮤직</a>
None
<a href="/movie/bi/mi/basic.nhn?code=82432" title="헬프">헬프</a>
<a href="/movie/bi/mi/basic.nhn?code=17159" title="포레스트 검프">포레스트 검프</a>
<a href="/movie/bi/mi/basic.nhn?code=181700" title="안녕 베일리">안녕 베일리</a>
<a href="/movie/bi/mi/basic.nhn?code=29217" title="글래디에이터">글래디에이터</a>
<a href="/movie/bi/mi/basic.nhn?code=106360" title="위대한 쇼맨">위대한 쇼맨</a>
<a href="/movie/bi/mi/basic.nhn?code=32686" title="센과 치히로의 행방불명">센과 치히로의 행방불명</a>
<a href="/movie/bi/mi/basic.nhn?code=66463" title="토이 스토리 3">토이 스토리 3</a>
<a href="/movie/bi/mi/basic.nhn?code=136900" title="어벤져스: 엔드게임">어벤져스: 엔드게임</a>
<a href="/movie/bi/mi/basic.nhn?code=35939" title="클래식">클래식</a>
<a href="/movie/bi/mi/basic.nhn?code=163788" title="알라딘">알라딘</a>
None
<a href="/movie/bi/mi/basic.nhn?code=92125" title="헌터 킬러">헌터 킬러</a>
<a href="/movie/bi/mi/basic.nhn?code=10048" title="죽은 시인의 사회">죽은 시인의 사회</a>
<a href="/movie/bi/mi/basic.nhn?code=161850" title="아이 캔 스피크">아이 캔 스피크</a>
<a href="/movie/bi/mi/basic.nhn?code=17170" title="레옹">레옹</a>
<a href="/movie/bi/mi/basic.nhn?code=134899" title="동주">동주</a>
<a href="/movie/bi/mi/basic.nhn?code=31796" title="반지의 제왕: 왕의 귀환">반지의 제왕: 왕의 귀환</a>
<a href="/movie/bi/mi/basic.nhn?code=18847" title="타이타닉">타이타닉</a>
<a href="/movie/bi/mi/basic.nhn?code=31162" title="캐스트 어웨이">캐스트 어웨이</a>
<a href="/movie/bi/mi/basic.nhn?code=12482" title="여인의 향기">여인의 향기</a>
<a href="/movie/bi/mi/basic.nhn?code=34324" title="집으로...">집으로...</a>
None
<a href="/movie/bi/mi/basic.nhn?code=17541" title="굿바이 마이 프랜드">굿바이 마이 프랜드</a>
<a href="/movie/bi/mi/basic.nhn?code=18543" title="서유기 2 - 선리기연">서유기 2 - 선리기연</a>
<a href="/movie/bi/mi/basic.nhn?code=130850" title="주토피아">주토피아</a>
<a href="/movie/bi/mi/basic.nhn?code=189111" title="두 교황">두 교황</a>
<a href="/movie/bi/mi/basic.nhn?code=19079" title="굿 윌 헌팅">굿 윌 헌팅</a>
<a href="/movie/bi/mi/basic.nhn?code=37886" title="클레멘타인">클레멘타인</a>
<a href="/movie/bi/mi/basic.nhn?code=147092" title="히든 피겨스">히든 피겨스</a>
<a href="/movie/bi/mi/basic.nhn?code=73372" title="세 얼간이">세 얼간이</a>
<a href="/movie/bi/mi/basic.nhn?code=14450" title="쉰들러 리스트">쉰들러 리스트</a>
<a href="/movie/bi/mi/basic.nhn?code=76667" title="울지마 톤즈">울지마 톤즈</a>
None
Process finished with exit code 0
.text
- 만약, 태그 안의 텍스트를 가져오고 싶으면 아래처럼 태그에 .text를 붙여서 가져오면 된다!
- 위의 결과에는 None이 있으므로 None.text는 오류가 발생하므로 이를 필터링해서 출력해보자!
select = soup.select('#old_content > table > tbody > tr')
for i in select:
a = i.select_one('td.title > div > a')
if a is not None:
print(a.text)
그린 북
가버나움
베일리 어게인
주전장
포드 V 페라리
아일라
원더
당갈
쇼생크 탈출
터미네이터 2:오리지널
보헤미안 랩소디
덕구
나 홀로 집에
월-E
살인의 추억
빽 투 더 퓨쳐
인생은 아름다워
매트릭스
라이언 일병 구하기
사운드 오브 뮤직
헬프
포레스트 검프
안녕 베일리
글래디에이터
위대한 쇼맨
센과 치히로의 행방불명
토이 스토리 3
어벤져스: 엔드게임
클래식
알라딘
헌터 킬러
죽은 시인의 사회
아이 캔 스피크
레옹
동주
반지의 제왕: 왕의 귀환
타이타닉
캐스트 어웨이
여인의 향기
집으로...
굿바이 마이 프랜드
서유기 2 - 선리기연
주토피아
두 교황
굿 윌 헌팅
클레멘타인
히든 피겨스
세 얼간이
쉰들러 리스트
울지마 톤즈
네이버 영화의 순위, 제목, 별점을 크롤링을해서 출력해보자!
import requests
from bs4 import BeautifulSoup
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'}
data = requests.get('https://movie.naver.com/movie/sdb/rank/rmovie.nhn?sel=pnt&date=20200303', headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
select = soup.select('#old_content > table > tbody > tr')
for i in select:
rank = i.select_one('.ac > img')
name = i.select_one('.title > div > a')
rate = i.select_one('td.point')
if name is not None:
print(rank['alt'] + ' ' + name.text + ' ' + rate.text)
01 그린 북 9.60
02 가버나움 9.59
03 베일리 어게인 9.52
04 주전장 9.52
05 포드 V 페라리 9.51
06 아일라 9.49
07 원더 9.49
08 당갈 9.47
09 쇼생크 탈출 9.44
010 터미네이터 2:오리지널 9.43
11 보헤미안 랩소디 9.42
12 덕구 9.41
13 나 홀로 집에 9.41
14 월-E 9.41
15 살인의 추억 9.40
16 빽 투 더 퓨쳐 9.40
17 인생은 아름다워 9.39
18 매트릭스 9.39
19 라이언 일병 구하기 9.39
20 사운드 오브 뮤직 9.39
21 헬프 9.39
22 포레스트 검프 9.39
23 안녕 베일리 9.39
24 글래디에이터 9.39
25 위대한 쇼맨 9.38
26 센과 치히로의 행방불명 9.38
27 토이 스토리 3 9.38
28 어벤져스: 엔드게임 9.38
29 클래식 9.38
30 알라딘 9.38
31 헌터 킬러 9.37
32 죽은 시인의 사회 9.37
33 아이 캔 스피크 9.37
34 레옹 9.37
35 동주 9.37
36 반지의 제왕: 왕의 귀환 9.37
37 타이타닉 9.36
38 캐스트 어웨이 9.36
39 여인의 향기 9.36
40 집으로... 9.36
41 굿바이 마이 프랜드 9.35
42 서유기 2 - 선리기연 9.35
43 주토피아 9.35
44 두 교황 9.35
45 굿 윌 헌팅 9.35
46 클레멘타인 9.35
47 히든 피겨스 9.35
48 세 얼간이 9.35
49 쉰들러 리스트 9.34
50 울지마 톤즈 9.34
'HTML+CSS+JS+Flask > mongoDB+pymongo+크롤링' 카테고리의 다른 글
pymongo로 mongoDB 연결 + 조작 (0) | 2021.06.26 |
---|---|
mongoDB + Atlas 설정 (0) | 2021.06.25 |
requests 라이브러리 (0) | 2021.06.17 |
프로젝트 생성 및 패키지 설치하기 (0) | 2021.06.17 |
개발환경 설치 (0) | 2021.06.15 |
@덕구공 :: Duck9s'
주니어 개발자에욤
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!