Python/サンプル/urllib2を使用したGETのサンプルコード
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* Pythonでurllib2を使用したGETのサンプルコード [#tf7709d8]
Pythonのurllib2モジュールを利用したHTTPのサンプルコードを...
#contents
#htmlinsertpcsp(ll-top.html,ll-sp.html)
* サンプルコード [#qb4741ba]
HTMLボディとHTTPコードおよびメッセージ、HTMLボディをリス...
** ボディを取得するサンプルコード [#ga0f6bcb]
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print r.read()
** HTTPコードとメッセージを取得するサンプルコード [#xeb47...
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print "geturl() = " + r.geturl()
print "code = ", r.code
print "msg = ", r.msg
** ボディをリストにセットするサンプルコード [#vc4d8ed9]
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print r.readlines()
以上、Pythonのurlllib2モジュールを使用したHTTP GETのサン...
#htmlinsertpcsp(ll-btm.html,ll-sp.html)
終了行:
#navi(../)
* Pythonでurllib2を使用したGETのサンプルコード [#tf7709d8]
Pythonのurllib2モジュールを利用したHTTPのサンプルコードを...
#contents
#htmlinsertpcsp(ll-top.html,ll-sp.html)
* サンプルコード [#qb4741ba]
HTMLボディとHTTPコードおよびメッセージ、HTMLボディをリス...
** ボディを取得するサンプルコード [#ga0f6bcb]
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print r.read()
** HTTPコードとメッセージを取得するサンプルコード [#xeb47...
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print "geturl() = " + r.geturl()
print "code = ", r.code
print "msg = ", r.msg
** ボディをリストにセットするサンプルコード [#vc4d8ed9]
import urllib2
r = urllib2.urlopen('http://ll.just4fun.biz/')
print r.readlines()
以上、Pythonのurlllib2モジュールを使用したHTTP GETのサン...
#htmlinsertpcsp(ll-btm.html,ll-sp.html)
ページ名: