2015 12 25Python 簡易爬蟲

2021-07-09 04:05:41 字數 537 閱讀 1634

使用python2.7.11版本

建立新的python file:

#!/usr/bin/env python

指定用什麼直譯器執行指令碼以及直譯器所在的位置

# -*- coding: utf-8 -*-

指定檔案編碼為utf-8

import urrlib2

if __name__ ==

'__main__': #

提供乙個入口**#設定

request

的url

資訊url =

''#設定頭部資訊

headers =

request = urllib2.request(url

= url,headers

= headers)

#傳送請求,接收響應

response = urllib2.urlopen(request)

#讀取響應的內容

print response.read()

執行

可以看到返回了網頁資訊

極簡美學 python

檢查兩個字串的組成元素是不是一樣的 from collections import counter defsimilarconsistence first,second return counter first counter second print similarconsistence abbc...

Python級簡入門

注 需要有基本的程式設計基礎 第一步 hello world程式 print hello world 其中,print函式會列印 顯示 出雙引號與單引號中的文字內容。也可以列印出乙個變數,但是不能加雙引號或單引號。第二步 input函式,如 input answer it here 其中,answe...

python極簡主義 極簡主義OCR

在編寫這個程式時,我一直有個疑惑,就是在east文字檢測模組裡。起初,我是在裡看到用opencv的dnn模組做east文字檢測,但是它的讀取模型檔案初始化網路的方式我一直疑惑不解。看text detect recognition.py的第152行 detector cv.dnn.readnet mo...