-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
66 lines (45 loc) · 1.91 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from flask import Flask, render_template, jsonify, request
app = Flask(__name__)
import requests
from bs4 import BeautifulSoup
from pymongo import MongoClient
client = MongoClient('localhost', 27017)
db = client.dbsparta
## HTML을 주는 부분
@app.route('/')
def home():
return render_template('index.html')
@app.route('/memo', methods=['GET'])
def listing():
# 1. 모든 document 찾기 & _id 값은 출력에서 제외하기
# 2. articles라는 키 값으로 영화정보 내려주기
articles = list(db.articles.find({}, {'_id': False}))
#db에 있는 거 싹 가져오는 코드임
return jsonify({'result': 'success', 'articles': articles})
## API 역할을 하는 부분
@app.route('/memo', methods=['POST'])
def saving():
# 1. 클라이언트로부터 데이터를 받기
# 2. meta tag를 스크래핑하기
# 3. mongoDB에 데이터 넣기
url_receive = request.form['url_give']
comment_receive = request.form['comment_give']
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_receive, headers=headers)
#받은 url을 써야하니까 위의 괄호 안 첫 파라미터를 url_receive로.
soup = BeautifulSoup(data.text, 'html.parser')
title = soup.select_one('meta[property="og:title"]')['content']
image = soup.select_one('meta[property="og:image"]')['content']
desc = soup.select_one('meta[property="og:description"]')['content']
doc ={
'title': title,
'image': image,
'desc': desc,
'comment':comment_receive,
'url': url_receive
}
db.articles.insert_one(doc)
return jsonify({'result': 'success', 'msg': '기사 저장 완료!'})
if __name__ == '__main__':
app.run('0.0.0.0', port=3000, debug=True)