web-dev-qa-db-ja.com

pythonでURLをリクエストし、リダイレクトに従わない簡単な方法はありますか?

Urllib2のソースを見ると、HTTPRedirectHandlerをサブクラス化してからbuild_openerを使用してデフォルトのHTTPRedirectHandlerをオーバーライドするのが最も簡単な方法のように見えますが、これは、ものすごく単純。

75
John

Requests の方法は次のとおりです。

import requests
r = requests.get('http://github.com', allow_redirects=False)
print(r.status_code, r.headers['Location'])
142
Marian

Dive Into Python には、urllib2によるリダイレクトの処理に関する優れた章があります。別の解決策は httplib です。

>>> import httplib
>>> conn = httplib.HTTPConnection("www.bogosoft.com")
>>> conn.request("GET", "")
>>> r1 = conn.getresponse()
>>> print r1.status, r1.reason
301 Moved Permanently
>>> print r1.getheader('Location')
http://www.bogosoft.com/new/location
34
olt

これはリダイレクトに従わないurllib2ハンドラです。

class NoRedirectHandler(urllib2.HTTPRedirectHandler):
    def http_error_302(self, req, fp, code, msg, headers):
        infourl = urllib.addinfourl(fp, headers, req.get_full_url())
        infourl.status = code
        infourl.code = code
        return infourl
    http_error_300 = http_error_302
    http_error_301 = http_error_302
    http_error_303 = http_error_302
    http_error_307 = http_error_302

opener = urllib2.build_opener(NoRedirectHandler())
urllib2.install_opener(opener)
11

これが役立つと思う

from httplib2 import Http
def get_html(uri,num_redirections=0): # put it as 0 for not to follow redirects
conn = Http()
return conn.request(uri,redirections=num_redirections)
8
Ashish

httplib2リクエストメソッドのredirectionsキーワードは、ニシンです。最初のリクエストを返すのではなく、リダイレクトステータスコードを受け取った場合、RedirectLimit例外を発生させます。初期応答を返すには、Falseオブジェクトでfollow_redirectsHttpに設定する必要があります。

import httplib2
h = httplib2.Http()
h.follow_redirects = False
(response, body) = h.request("http://example.com")
7
Ian Mackinnon

2番目のoltのポインター Pythonに飛び込む 。 urllib2リダイレクトハンドラーを使用した実装は次のとおりです。たぶん、肩をすくめる。

import sys
import urllib2

class RedirectHandler(urllib2.HTTPRedirectHandler):
    def http_error_301(self, req, fp, code, msg, headers):  
        result = urllib2.HTTPRedirectHandler.http_error_301( 
            self, req, fp, code, msg, headers)              
        result.status = code                                 
        raise Exception("Permanent Redirect: %s" % 301)

    def http_error_302(self, req, fp, code, msg, headers):
        result = urllib2.HTTPRedirectHandler.http_error_302(
            self, req, fp, code, msg, headers)              
        result.status = code                                
        raise Exception("Temporary Redirect: %s" % 302)

def main(script_name, url):
   opener = urllib2.build_opener(RedirectHandler)
   urllib2.install_opener(opener)
   print urllib2.urlopen(url).read()

if __== "__main__":
    main(*sys.argv) 
5
Aaron Maenpaa

ただし、最短の方法は

class NoRedirect(urllib2.HTTPRedirectHandler):
    def redirect_request(self, req, fp, code, msg, hdrs, newurl):
        pass

noredir_opener = urllib2.build_opener(NoRedirect())
5