Merge remote-tracking branch 'tanner/master'

This commit is contained in:
Jason Schwarzenberger
2020-11-09 16:08:28 +13:00
3 changed files with 11 additions and 8 deletions

View File

@@ -84,8 +84,11 @@ def get_article(url):
def get_content_type(url):
try:
headers = {'User-Agent': 'Twitterbot/1.0'}
return requests.get(url, headers=headers, timeout=2).headers['content-type']
headers = {
'User-Agent': 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
'X-Forwarded-For': '66.249.66.1',
}
return requests.get(url, headers=headers, timeout=5).headers['content-type']
except:
pass