A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 小檀 初级黑马   /  2018-8-1 13:12  /  993 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 小檀 于 2018-8-1 13:15 编辑

  • # 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


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马