千家信息网

怎么用python抓取百度贴吧内容

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,本篇内容介绍了"怎么用python抓取百度贴吧内容"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!#
千家信息网最后更新 2025年01月19日怎么用python抓取百度贴吧内容

本篇内容介绍了"怎么用python抓取百度贴吧内容"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

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

class Tiebar:
#初始化数据
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'
#获取页面内容的方法
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"连接贴吧页面失败,错误原因",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
#获取帖子的页数
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' + '帖子内容-----' + item[1].strip() + '\n'
    str = self.tool.replace(str)
    # print u'作者',item[0],u'帖子内容:',item[1]
    return str
    #写文件
    def writeStr2File(self,out_put_file,str1,append = 'a'):
    # 去掉文件,保留路径。比如 'a/b/c/d.txt' 经过下面代码会变成 'a/b/c'
    subPath = out_put_file[:out_put_file.rfind('/')]
    # 如果给定的路径中,文件夹不存在,则创建
    if not os.path.exists(subPath):
    os.makedirs(subPath)
    # 打开文件并将 str 内容写入给定的文件
    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已失效,请重试!"
    return
    print u"该帖子共有" + str(page_num) + u"页数据"
    for i in range(1,int(page_num)+1):
    print u"正在写入第" + str(i) + u"页数据..."
    content = "正在写入第" + str(i) + u"页数据------------------------------------\n" + self.get_tiebar(i)
    self.writeStr2File(self.out_put_file,content)


    class Tool:
    #去除img标签
    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('http://tieba.baidu.com/p/3138733512','1')
    # title = tiebar.get_titile()
    # page_num = tiebar.get_page_num()
    # print title,page_num
    tiebar.start_crawl()

    "怎么用python抓取百度贴吧内容"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

  • 0