这篇文章主要为大家详细介绍了python爬虫代码示例,具有一定的参考价值,可以用来参考一下。
感兴趣python爬虫代码示例的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
# coding=utf-8
import requests
from bs4 import BeautifulSoup
# 获取html文档
def get_html(url):
"""get the content of the url"""
response = requests.get(url)
response.encoding = 'utf-8'
return response.text
# 获取笑话
def get_certain_joke(html):
"""get the joke of the html"""
soup = BeautifulSoup(html, 'lxml')
joke_content = soup.select('div.content')[0].get_text()
return joke_content
url_joke = "https://www.qiushibaike.com"
html = get_html(url_joke)
joke_content = get_certain_joke(html)
print joke_content
本文来自:http://www.q1010.com/181/2929-0.html
注:关于python爬虫代码示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:爬虫
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。