Created
March 7, 2019 03:18
-
-
Save ro0opf/1ba6a1fbf3df0c9842de8e791c05c0e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup as bs | |
import time | |
import multiprocessing as mp | |
import os | |
def _get(index, title_list, score_list): | |
html = requests.get('https://www.jobplanet.co.kr/companies/' + str(index)).content | |
soup = bs(html, 'html.parser') | |
proc = os.getpid() | |
for data in soup.find_all(class_='company_info_wrap'): | |
title = data.find(class_='tit') | |
score = data.find(class_='icon text_info') | |
title_list.append(title.text) | |
score_list.append(score.text) | |
print("{}".format(proc)) | |
return | |
if __name__ == '__main__': | |
start_time = time.time() | |
title_list = mp.Manager().list() | |
score_list = mp.Manager().list() | |
pool = mp.Pool(5) | |
for i in range(1,30): | |
pool.apply_async(_get, args=(i, title_list, score_list)) | |
pool.close() | |
pool.join() | |
count = 1 | |
for t in title_list: | |
print("{}{} {} {}".format(count, "위", t, score_list[count-1])) | |
count += 1 | |
print("--- %s seconds ---" % (time.time() - start_time)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment