Newer
Older
from urllib.error import HTTPError
from urllib.request import urlopen
import mysql.connector
from bs4 import BeautifulSoup
from config import Config
from confluent_kafka import Producer
Ajou notices Parser using Slack API and Apache Kafka (MySQL)
run(server=Config.VM_SERVER, database="ajou_notices")
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
Usage
-----
ajou = AjouParser(Kafka_server_ip, mysql_db_name)
ajou.run()
"""
ADDRESS = "https://www.ajou.ac.kr/kr/ajou/notice.do"
LENGTH = 10
MAXIMUM_DAY = 7 # remove notices in json that were posted more than 7days ago
# MySQL commands
INSERT_COMMAND = (
"INSERT INTO notices (id, title, date, link, writer) "
"VALUES (%s, %s, %s, %s, %s)"
)
DUPLICATE_COMMAND = "SELECT EXISTS(SELECT * FROM notices WHERE id = %(id)s)"
UPDATE_COMMAND = "UPDATE notices SET date = %(date)s WHERE id = 1"
__slots__ = ("db", "cursor", "settings", "producer")
def __init__(self, server=Config.VM_SERVER, database="ajou_notices"):
print("Initializing...")
# MySQL
self.db = mysql.connector.connect(
host="localhost",
user=os.environ["MYSQL_USER"],
password=os.environ["MYSQL_PASSWORD"],
database=database,
charset="utf8",
)
self.cursor = self.db.cursor(buffered=True)
self.settings = { # Producer settings
"bootstrap.servers": server,
"enable.idempotence": True, # Safe
"acks": "all", # Safe
"max.in.flight": 5, # High throughput
"compression.type": "lz4", # High throughput
"linger.ms": 5, # High throughput
}
self.producer = Producer(self.settings)
def run(self, period=3600): # period (second)
"""Check notices from html per period and sends data to Kafka Consumer."""
p = self.producer
db = self.db
cursor = self.cursor
while True: # 1시간마다 무한 반복
print() # Section
PRODUCED = 0 # How many messages did it send?
cursor.execute("SELECT date FROM notices WHERE id = 1")
LAST_PARSED = datetime.datetime.strptime(
cursor.fetchone()[0], "%Y-%m-%d %H:%M:%S.%f"
) # db load date where id = 1
now = self.getTimeNow()
diff = (now - LAST_PARSED).seconds
print("Last parsed at", LAST_PARSED)
if (diff / period) < 1: # 업데이트 후 period시간이 안 지났음, 대기
print(f"Wait for {period - diff} seconds to sync new posts.")
time.sleep(period - diff)
print("Trying to parse new posts...")
ids, posts, dates, writers = self.parser() # 다시 파싱
assert ids is not None, f"Check your parser: {ids}."
self.UPDATE_COMMAND, {"date": now.strftime("%Y-%m-%d %H:%M:%S.%f")},
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
for i in range(self.LENGTH):
postId = ids[i].text.strip()
cursor.execute(
self.DUPLICATE_COMMAND, {"id": int(postId)}
) # db duplication check
if cursor.fetchone()[0]: # (1, )
continue # postId exists
postLink = self.ADDRESS + posts[i].get("href")
postTitle = posts[i].text.strip()
postDate = dates[i].text.strip()
postWriter = writers[i].text
duplicate = "[" + postWriter + "]"
if duplicate in postTitle: # writer: [writer] title
postTitle = postTitle.replace(
duplicate, ""
).strip() # -> writer: title
dbData = (
int(postId),
postTitle,
postDate,
postLink,
postWriter,
)
kafkaData = self.makeData(
postId, postTitle, postDate, postLink, postWriter
)
cursor.execute(self.INSERT_COMMAND, dbData) # db insert
print("\n>>> Sending a new post...:", postId)
PRODUCED += 1
p.produce(
Config.AJOU_TOPIC_ID,
value=json.dumps(kafkaData[postId]),
callback=self.acked,
)
p.poll(1) # 데이터 Kafka에게 전송, second
if PRODUCED:
print(f"Sent {PRODUCED} post(s)...")
else:
print("\t** No new posts yet")
print("Parsed at", now)
db.commit() # save data
print(f"Resting {period // 3600} hour...")
time.sleep(period)
except Exception as e: # General exceptions
print(dir(e))
except KeyboardInterrupt:
print("Pressed CTRL+C...")
finally:
print("\nExiting...")
cursor.close()
db.commit()
db.close()
p.flush(100)
# Producer callback function
@staticmethod
def acked(err, msg):
if err is not None:
print(
"\t** Failed to deliver message: {0}: {1}".format(
msg.value(), err.str()
)
else:
print("Message produced correctly...")
@staticmethod
def makeData(postId, postTitle, postDate, postLink, postWriter):
return {
postId: {
"TITLE": postTitle,
"DATE": postDate,
"LINK": postLink,
"WRITER": postWriter,
}
}
@staticmethod
def getTimeNow() -> datetime.datetime:
return datetime.datetime.now()
result = urlopen(
f"{self.ADDRESS}?mode=list&&articleLimit={self.LENGTH}&article.offset=0",
context=context,
print("Seems like the server is down now.")
return None, None, None, None
soup = BeautifulSoup(html, "html.parser")
ids = soup.select("table > tbody > tr > td.b-num-box")
posts = soup.select("table > tbody > tr > td.b-td-left > div > a")
dates = soup.select(
"table > tbody > tr > td.b-td-left > div > div > span.b-date"
)
writers = soup.select(
"table > tbody > tr > td.b-td-left > div > div.b-m-con > span.b-writer"
)
return ids, posts, dates, writers
if __name__ == "__main__":
ajou = AjouParser()
ajou.run()