果然還是太難 目前只進行到提取Cookie的階段
不過有進展是好事
import urllib.request
with urllib.request.urlopen("http://www.thsrc.com.tw/index.html?force=1") as url:
s = url.read()
u = url.geturl()
x = url.getcode()
z = url.info()
print(u)
print(x)
print(z)
---------------------------------------------------------
http://www.thsrc.com.tw/index.html?force=1 200 Content-Type: text/html Last-Modified: Tue, 28 Feb 2017 02:09:51 GMT Accept-Ranges: bytes ETag: "7d96d0be6791d21:0" X-Powered-By: ASP.NET X-Frame-Options: SAMEORIGIN Date: Tue, 28 Feb 2017 12:32:18 GMT Connection: close Content-Length: 150828
--------------------------------------------------------------------
還要再了解提取出來的Cookie代表著甚麼意義 至少現在開始有東西可以去玩玩了
之前都不知道該重哪裡開始 我看這一個月就先玩這個吧 話說網路上找到的教學函式庫都是2.7版的幹