中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何獲取整個網頁源碼

發布時間:2020-08-03 09:40:40 來源:億速云 閱讀:273 作者:小豬 欄目:開發技術

小編這次要給大家分享的是python如何獲取整個網頁源碼,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

1、Python中獲取整個頁面的代碼:

import requests
res = requests.get('https://blog.csdn.net/yirexiao/article/details/79092355')
res.encoding = 'utf-8'
print(res.text)

2、運行結果

python如何獲取整個網頁源碼

實例擴展:

from bs4 import BeautifulSoup
import time,re,urllib2
t=time.time()
websiteurls={}
def scanpage(url):
 websiteurl=url
 t=time.time()
 n=0
 html=urllib2.urlopen(websiteurl).read()
 soup=BeautifulSoup(html)
 pageurls=[]
 Upageurls={}
 pageurls=soup.find_all("a",href=True)
 for links in pageurls:
  if websiteurl in links.get("href") and links.get("href") not in Upageurls and links.get("href") not in websiteurls:
   Upageurls[links.get("href")]=0
 for links in Upageurls.keys():
  try:
   urllib2.urlopen(links).getcode()
  except:
   print "connect failed"
  else:
   t2=time.time()
   Upageurls[links]=urllib2.urlopen(links).getcode()
   print n,
   print links,
   print Upageurls[links]
   t1=time.time()
   print t1-t2
  n+=1
 print ("total is "+repr(n)+" links")
 print time.time()-t
scanpage(http://news.163.com/)

看完這篇關于python如何獲取整個網頁源碼的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

康定县| 南涧| 二连浩特市| 越西县| 莎车县| 应城市| 四会市| 彰武县| 兴城市| 兴山县| 砀山县| 莎车县| 高淳县| 北辰区| 宣化县| 宜城市| 陇西县| 辛集市| 彩票| 会昌县| 南雄市| 灵山县| 岳阳市| 郴州市| 安阳市| 武义县| 龙井市| 光泽县| 钦州市| 饶河县| 渭源县| 宝应县| 青铜峡市| 东明县| 广灵县| 蒲江县| 沛县| 车险| 龙海市| 弥渡县| 布尔津县|