#Python 3.5
#By A_lPha
#http://blog.youkuaiyun.com/a_lpha
from urllib.request import urlopen
from bs4 import BeautifulSoup
import requests
import re
URL = "http://daily.zhihu.com/"
def get_url(URL):
bsobj = urlopen(URL)
text = bsobj.read().decode("utf-8")
return text
def get_reg
爬取每则知乎日报
最新推荐文章于 2024-04-07 09:48:41 发布