避免“HTTP错误418:你看起来像一个机器人”

时间:2018-03-12 19:23:35

标签: screen-scraping pythonanywhere

我有一个用urllib抓取主页的脚本:

url = "https://www.ebay-kleinanzeigen.de/..."
html = urllib.request.urlopen(url).read().decode('utf-8')

如果我在我的电脑上运行脚本我没有问题,如果我在pythonanywhere.com上运行它我得到:

  

HTTP错误418:你看起来像一个机器人

因为它在我的电脑上工作,原因可能是pythonanywhere.com的已知IP。这是正确的,我怎么能避免这个?

0 个答案:

没有答案