2012-12-01 9 views
4

역 이미지 검색을 수행하고 결과에 대한 설명을 수집하려고합니다.Google 역 이미지 검색을위한 GET 요청 보내기

import requests 

r = requests.get('http://www.google.com/searchbyimage?image_url=http://i.imgur.com/j3shP.jpg') 
r.text 

가 이상적으로는 위키 백과의 설명을 찾을 수 있어야합니다 : 나는 빨리 막 다른 골목으로 실행했습니다는 "와인 throated 큰 벌새 (Atthis ellioti)는 Trochilidae의 가족 벌새의 종입니다 그것은 발견된다. 엘살바도르, 과테말라, 온두라스, 그리고 ... ". Firebug에서 수동으로 찾을 수 있지만 GET 요청에 의해 반환되지 않습니다. 이 잘못 되었습니까, 아니면 Google에서 허용하지 않는 기능입니까?

답변

4

흥미로운 질문입니다. 어떤 이유로,이 기능은 User-Agent 헤더를 필요로하며 최소한 Firefox 브라우저에서는 작동하지 않습니다. 그러나 이렇게하면 :

headers = {} 
headers['User-Agent'] = "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.27 Safari/537.17" 
r = requests.get('http://www.google.com/searchbyimage?image_url=http://i.imgur.com/j3shP.jpg', headers=headers) 

작동합니다. 텍스트가 많지만 벌새 이미지에 대한 참조를 볼 수 있습니다.

h9fVq52EM&amp;tbnh=0&amp;tbnw=0&amp;prev=/search%3Fq%3D%26tbm%3Disch%26tbo%3Du&amp;zoom=1&amp;q=&amp;usg=__ZgK5jfDBcK04SU2bfmNK5FCj6t8=&amp;docid=xg1LDwTq_rx2VM&amp;sa=X&amp;ei=cFu6UIPgI-7q0QHi54DYAQ&amp;ved=0CH0Q1Rc"><img src="http://t3.gstatic.com/images?q=tbn:ANd9GcRZymll5oKgx8oqrdojY6ATda9pY5yWzG0JzsGcf7AA739px2wEYy_jYA" alt="Wine-throated Hummingbird" border=0 height=116 style="margin-left:-30px;" width=173></a></div><a href="/imgres?imgurl=http://ibc.lynxeds.com/files/imagecache/photo_940/pictures/Eisermann_Atthis_ellioti.jpg&amp;imgrefurl=http://ibc.lynxeds.com/photo/wine-throated-hummingbird-atthis-ellioti/displaying-male&amp;h=162&amp;w=242&amp;sz=5&amp;tbnid=3xjh-h9fVq52EM&amp;tbnh=0&amp;tbnw=0&amp;prev=/search%3Fq%3D%26tbm%3Disch%26tbo%3Du&amp;zoom=1&amp;q=&amp;usg=__ZgK5jfDBcK04SU2bfmNK5FCj6t8=&amp;docid=xg1LDwTq_rx2VM&amp;sa=X&amp;ei=cFu6UIPgI-7q0QHi54DYAQ&amp;ved=0CH4QuhM"class="fl ellip" style="color:#999;font-size:11px;display:inline-block;text-align:right;width:100%">ibc.lynxeds.com</a></div><div class=krable data-ved="0CH0Q1Rc" style="float:right;margin:5px 0 4px"></div></div><div class="kno-desc kno-fb-ctx"><div >The Wine-Throated Hummingbird is a species of hummingbird in the Trochilidae family. It is found in El Salvador, Guatemala, Honduras, and Mexico. Its natural habitats are subtropical or tropical moist montane forests. <a href="http://en.wikipedia.org/wiki/Wine-throated_Hummingbird" class="fl q" style="color:#999;font-size:11px" onmousedown="return rwt(this,\'\',\'\',\'\',\'17\',\'AFQjCNH07EpIAh31_2ubTIQThRNfQluC8g\',\'\',\'0CH8QmhMoADAQ\',\'\',\'\',event)"><span class=kno-desca>Wikipedia</span></a></div><div class=krable data-ved="0CH8QmhM" style="margin:2px 0 4px"></div></div><div class=rhsl5 style=clear:both></div><div class="kno-ft kno-xs"><table class="kno-fs ts"><tr><td style="vertical-align:top;width:100%"><div class="kno-f kno-fb-ctx"><span class=krable data-ved="0CIIBEMsTKAA" style="margin:0 0 5px"></span><span class="kno-fh "><a href="/search?hl=en&amp;tbo=d&amp;q=wine+throated+hummingbird+scientific+name&amp;sa=X&amp;ei=cFu6UIPgI-7q0QHi54DYAQ&amp;ved=0CIEBEOgT" class=fl style=color:#000>Scientific name</a>: </span><span class="kno-fv"><span class="kno-fv-vq fl" data-vq="/search?hl=en&amp;tbo=d&amp;q=%22wine-throated+hummingbird%22+%22scientific+name%22+%22atthis+ellioti%22&amp;stick=H4sIAAAAAAAAAAEtANL_AHvTx-gAAAAQCAMiCi9tLzAydnRyNnJAAcWxzJB1fpUio0i895QopmaQvkAE23M00C0AAAA">Atthis ellioti</span></span></div><div class="kno-f kno-fb-ctx"><span class=krable data-ved="0CIQBEMsTKAE" style="margin:0 0 5px"></span> 
+1

고마워요! 나는 결과를 지금 사용할 수 있다고 믿는다. –

관련 문제