Make qotnews work with WaPo

This commit is contained in:
2020-10-29 04:55:34 +00:00
parent ee5105743d
commit feba8b7aa0
3 changed files with 13 additions and 7 deletions

View File

@@ -46,7 +46,7 @@ def get_article(url):
logging.info('Trying our server instead...')
try:
r = requests.post(READ_API, data=dict(url=url), timeout=10)
r = requests.post(READ_API, data=dict(url=url), timeout=20)
if r.status_code != 200:
raise Exception('Bad response code ' + str(r.status_code))
return r.text
@@ -94,7 +94,6 @@ def update_story(story, is_manual=False):
return False
if story.get('url', '') and not story.get('text', ''):
logging.info('inside if')
if not get_content_type(story['url']).startswith('text/'):
logging.info('URL invalid file type / content type:')
logging.info(story['url'])

View File

@@ -7,12 +7,15 @@ import requests
import time
from bs4 import BeautifulSoup
USER_AGENT = 'Twitterbot/1.0'
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0'
def api(route):
try:
headers = {'User-Agent': USER_AGENT}
r = requests.get(route, headers=headers, timeout=5)
headers = {
'User-Agent': USER_AGENT,
'X-Forwarded-For': '66.249.66.1',
}
r = requests.get(route, headers=headers, timeout=10)
if r.status_code != 200:
raise Exception('Bad response code ' + str(r.status_code))
return r.text