爬蟲的簡單運用

2022-09-02 20:03:08 字數 669 閱讀 5515

我運用的庫為requests

python沒有自帶需自行安裝

安裝** pip install requests   或 pip3 install requests

**如下:

import requests

def gethtml(url):

try:

r = requests.get(url,timeout=30)

r.raise_for_status()#如果狀態不是200,引發異常

r.encoding='utf-8'#無論原來是什麼編碼,都改成utf-8

return r.text,r.content

except:

return ""

url=""

str1,str2=gethtml(url)

print(str1)

print(len(str1))

print(len(str2))

注意爬取**與讀入檔案一樣要做異常處理及使用try-except語句

結果如下:

新聞hao123

地圖貼吧更多產品

多次訪問只需要運用迴圈語句多次呼叫函式即可

轉殖的簡單運用

package clonetest public class student implements cloneable public student public student string name,int age,string public string getname public void...

OC NSInvocation的簡單運用

2.nsinvocation的作用 3.nsinvocation的使用步驟 4.使用nsinvocation時的 注意點 5.nsinvocation的簽名 nsmethodsignature 的使用 2 注意點 import viewcontroller.h inte ce viewcontrol...

git的簡單運用

記得是在當前目錄 就是需要你上傳的檔案目錄 下開啟git bash here git clone ssh 此處為把你遠端的原件轉殖到本地 git status 檢視當前狀態 git add all 上傳當前所有檔案 git commit m 此處填寫為你上傳檔案的簡單說明 git pull orig...