码迷,mamicode.com
首页 > 编程语言 > 详细

python爬糗事百科段子

时间:2017-03-14 18:44:34      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:com   python   app   like   sel   requests   gecko   htm   div   

#!/usr/bin/env python
# coding: UTF-8
# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup
#import pandas
newurl=‘http://www.qiushibaike.com/text/page/1/‘
headers = {‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2859.0 Safari/537.36‘}
res = requests.get(newurl,headers=headers)
res.encoding = ‘utf-8‘
soup = BeautifulSoup(res.text,"html.parser")
a = soup.select(‘.content‘)
for i in a:
  print(i.select(‘span‘)[0].text.strip())
  print(‘=============================================================================================================================‘)

python爬糗事百科段子

标签:com   python   app   like   sel   requests   gecko   htm   div   

原文地址:http://www.cnblogs.com/pengcd/p/6549714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!