超简单的爬虫

 百度一下,你就知道                     新闻 hao123 地图 视频 贴吧  登录   更多产品       关于百度 About Baidu  ©2017 Baidu 使用百度前必读  意见反馈 京ICP证030173号      

import requests
from bs4 import BeautifulSoup

url = 'https://www.baidu.com/'
page = requests.get(url)
soup = BeautifulSoup(page.content, 'html.parser')
text = soup.get_text()
print(text)

你可能感兴趣的:(python,开发语言)