分享

微信公众号推送信息爬取

 网海拾贝网络猪 2018-01-26
#! /usr/bin/env python3from selenium import webdriverfrom datetime import datetimeimport bs4, requestsimport os, time, sys# 获取公众号链接def getAccountURL(searchURL): res = requests.get(searchURL) res.raise_for_status() soup = bs4.BeautifulSoup(res.text, 'lxml') # 选择第一个链接 account = soup.select('a[uigs='account_name_0']') return account[0]['href']# 获取首篇文章的链接,如果有验证码返回Nonedef getArticleURL(accountURL): browser = webdriver.PhantomJS('/Users/chasechoi/Downloads/phantomjs-2.1.1-macosx/bin/phantomjs') # 进入公众号 browser.get(accountURL) # 获取网页信息 html = browser.page_source accountSoup = bs4.BeautifulSoup(html, 'lxml') time.sleep(1) contents = accountSoup.find_all(hrefs=True) try: partitialLink = contents[1]['hrefs'] firstLink = base + partitialLink except IndexError: firstLink = None print('CAPTCHA!') return firstLink# 创建文件夹存储html网页,以时间命名def folderCreation(): path = os.path.join(os.getcwd(), datetime.now().strftime('%Y-%m-%d_%H-%M-%S')) try: os.makedirs(path) except OSError as e: if e.errno != errno.EEXIST: raise print('folder not exist!') return path# 将html页面写入本地def writeToFile(path, account, title): pathToWrite = os.path.join(path, '{}_{}.html'.format(account, title)) myfile = open(pathToWrite, 'wb') myfile.write(res.content) myfile.close()base ='https://mp.weixin.qq.com'accountList = ['央视新闻', '新浪新闻','凤凰新闻','羊城晚报']query = 'http://weixin.sogou.com/weixin?type=1&s_from=input&query='path = folderCreation()for index, account in enumerate(accountList): searchURL = query + account accountURL = getAccountURL(searchURL) time.sleep(10) articleURL = getArticleURL(accountURL) if articleURL != None: print('#{}({}/{}): {}'.format(account, index+1, len(accountList), accountURL)) # 读取第一篇文章内容 res = requests.get(articleURL) res.raise_for_status() detailPage = bs4.BeautifulSoup(res.text, 'lxml') title = detailPage.title.text print('标题: {}\n链接: {}\n'.format(title, articleURL)) writeToFile(path, account, title) else: print('{} files successfully written to {}'.format(index, path)) sys.exit()print('{} files successfully written to {}'.format(len(accountList), path))

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多