가수면

기초 문법 및 크롤링 복습 본문

Python/Python

기초 문법 및 크롤링 복습

니비앙 2022. 10. 23. 20:16

-자바스크립트 코드들-

 

*홈페이지 로딩 후 실행*

<script>
    $(document).ready(function () {
        listing();
    });

 

*반복 함수*

let star_image = '⭐'.repeat(star)

star만큼 반복

 

 

-python 문법-

 

· 파이썬은 let 붙일 필요 없음

· 파이썬은 중괄호 필요 없음. : 찍고 탭(탭 해서 들여 쓴 것들이 내용물)

 

 

*python 리스트 추가*

a_list = []
a_list.append(1)     # 리스트에 값을 넣는다
a_list.append([2,3]) # 리스트에 [2,3]이라는 리스트를 다시 넣는다

 

*크롤링(홈페이지에서 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.naver?sel=pnt&date=20210829',headers=headers)

soup = BeautifulSoup(data.text, 'html.parser')

# 코딩 시작

 


 

*연습 1*

print했을 때 오른쪽처럼 나오게 하기

movies = soup.select('#old_content > table > tbody > tr')

for movie in movies:
    a = movie.select_one('td.title > div > a')
    if a is not None:
        rank = movie.select_one('td:nth-child(1) > img')['alt']
        title = a.text
        rate = movie.select_one('td.point').text
        print(rank,title,rate)

틀린 것

title = a.text를 title = movie.select_one('td.title > div > a')로 썼었음

movie.select_one('td.title > div > a')는 이미 위에서 a로 잡았기에 그냥 a로 적으면 됨

 

 

*연습 2*

영화 '가버나움'과 같은 평점의 영화 찾기

# 답안

movie = db.movies.find_one({'title':'가버나움'})
star = movie['star']

all_movies = list(db.movies.find({'star':star},{'_id':False}))
for m in all_movies:
    print(m['title'])
#내가 쓴 것

all_movies = list(db.movies.find({'star':'9.59'},{'_id':False}))
for m in all_movies:
    print(m['title'])

결과는 같았으나 위와 같은 접근법이 필요했다.

'Python > Python' 카테고리의 다른 글

파이썬 내장 라이브러리  (0) 2023.11.13
Python 문법  (0) 2023.11.08
Flask (API만들기)  (0) 2022.10.20
Python 함수  (0) 2022.10.18
Comments