urllib2 ライブラリを使用して Web サイトを読み込もうとしています。これが私のスクリプトです:
import urllib2
# Get a file-like object for the Python Web site's home page.
def wikitranslate(word):
translation = ''
pageURL = ''
opener = urllib2.build_opener()
f = opener.open("http://fr.wikipedia.org/w/api.php?action=opensearch&search=" + re.sub(' ', '%20', word.rstrip()))
# Read from the object, storing the page's contents in 's'.
s = f.read()
サーバーがこれらのリクエストをどのように受信するのか、また、ブラウザーではなく Python スクリプトによってアクセスされているという事実をサーバーが認識できるかどうか疑問に思っています。
もしそうなら、それを隠す方法はありますか?