1. 程式人生 > >認識爬蟲(1)

認識爬蟲(1)

可以直接拿來執行

# 防止中文中文出現http協議定義URL中的保留字元,編碼成16進位制的字串形式
response = requests.get('https://tieba.baidu.com/f?kw=%E6%B5%81%E6%B5%AA%E6%B1%89')
with open('tieba.html','w+',encoding='utf-8') as f:
    f.write(response.content.decode('utf-8'))