真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么用python抓取百度貼吧內(nèi)容-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“怎么用python抓取百度貼吧內(nèi)容”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)主要業(yè)務(wù)有網(wǎng)站營(yíng)銷策劃、成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、微信小程序開發(fā)、H5網(wǎng)站設(shè)計(jì)、程序開發(fā)等業(yè)務(wù)。一次合作終身朋友,是我們奉行的宗旨;我們不僅僅把客戶當(dāng)客戶,還把客戶視為我們的合作伙伴,在開展業(yè)務(wù)的過(guò)程中,公司還積累了豐富的行業(yè)經(jīng)驗(yàn)、全網(wǎng)營(yíng)銷推廣資源和合作伙伴關(guān)系資源,并逐漸建立起規(guī)范的客戶服務(wù)和保障體系。 

# -*- coding: utf-8
import urllib2
import urllib
import re,os
import time
import sys
reload(sys)
sys.setdefaultencoding('utf-8')

class Tiebar:
    #初始化數(shù)據(jù)
    def __init__(self,base_url,see_lz):
        self.base_url = base_url
        self.see_lz = '?see_lz=' + see_lz
        self.page = 1
        self.user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'
        self.headers = { 'User-Agent' : self.user_agent }
        self.tool = Tool()
        self.out_put_file = 'd:/python/test/out.txt'
    #獲取頁(yè)面內(nèi)容的方法
    def get_cotent(self,page):
        try:
            url = self.base_url + self.see_lz + '&pn=' + str(page)
            request = urllib2.Request(url,headers=self.headers)
            response = urllib2.urlopen(request)
            act_url = response.geturl()
            print 'init url=',url,'act url=',act_url
            if url == act_url:
                content = response.read()
                return content
            else:
                return None
        except urllib2.URLError, e:
            if hasattr(e,"reason"):
                print u"連接貼吧頁(yè)面失敗,錯(cuò)誤原因",e.reason
                return None
    #獲取帖子主題
    def get_titile(self):
        content = self.get_cotent(1)
        pattern = re.compile('

(.*?)

')
        result = re.search(pattern,content)
        if result:
            return result.group(1).strip()
        else:
            return None
    #獲取帖子的頁(yè)數(shù)
    def get_page_num(self):
        content = self.get_cotent(1)
        pattern = re.compile('
  •             return None
            patt_content = re.compile('(.*?).*?'
                        + '
    '
                        + '(.*?)',re.S)
            msg = re.findall(patt_content,content)
            for item in msg:
                str = str + '\n作者-----' + item[0] + '\n' + '帖子內(nèi)容-----' + item[1].strip() + '\n'
                str = self.tool.replace(str)
                # print u'作者',item[0],u'帖子內(nèi)容:',item[1]
            return str
        #寫文件
        def writeStr2File(self,out_put_file,str1,append = 'a'):
            # 去掉文件,保留路徑。比如 'a/b/c/d.txt' 經(jīng)過(guò)下面代碼會(huì)變成 'a/b/c'
            subPath = out_put_file[:out_put_file.rfind('/')]
            # 如果給定的路徑中,文件夾不存在,則創(chuàng)建
            if not os.path.exists(subPath):
                os.makedirs(subPath)
            # 打開文件并將 str 內(nèi)容寫入給定的文件
            with open(out_put_file, append) as f:
                f.write(str1.strip()+'\n')


        def start_crawl(self):
            page_num = self.get_page_num()
            if page_num == None:
                print "url已失效,請(qǐng)重試!"
                return
            print u"該帖子共有" + str(page_num) + u"頁(yè)數(shù)據(jù)"
            for i in range(1,int(page_num)+1):
                print u"正在寫入第" + str(i) + u"頁(yè)數(shù)據(jù)..."
                content = "正在寫入第" + str(i) + u"頁(yè)數(shù)據(jù)------------------------------------\n" + self.get_tiebar(i)
                self.writeStr2File(self.out_put_file,content)


    class Tool:
        #去除img標(biāo)簽
        patt_img = re.compile(r'')
        patt_herf = re.compile(r'|')
        patt_br = re.compile(r'
    {1,3}')


        def replace(self,content):
            content = re.sub(self.patt_img,"",content)
            content = re.sub(self.patt_herf,"",content)
            content = re.sub(self.patt_br,"\n",content)
            return content.strip()

    tiebar = Tiebar('/tupian/20230522/error.html title = tiebar.get_titile()
    # page_num = tiebar.get_page_num()
    # print title,page_num
    tiebar.start_crawl()

    “怎么用python抓取百度貼吧內(nèi)容”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


    當(dāng)前文章:怎么用python抓取百度貼吧內(nèi)容-創(chuàng)新互聯(lián)
    本文鏈接:http://weahome.cn/article/gciso.html
  • 其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部