Skip to content

Commit

Permalink
Add category check to Wolfram
Browse files Browse the repository at this point in the history
  • Loading branch information
zachd committed Jul 20, 2018
1 parent e577cd9 commit a4d3e5b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
8 changes: 4 additions & 4 deletions hqtrivia_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def prediction_time(self, data):
confidence = {'A': 0, 'B': 0, 'C': 0}
for solver in self.solvers:
responses[solver] = solver.fetch_responses(
solver.build_urls(data.get('question'), data.get('answers')), session
solver.build_urls(data.get('question'), data.get('answers'), data.get('category')), session
)
for solver, responses in responses.items():
(prediction, confidence) = solver.run(
Expand Down Expand Up @@ -381,7 +381,7 @@ def cache_prune(session, solvers):
for filename in sorted(glob('games/*.json')):
game = load(open(filename))
for turn in game.get('questions'):
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers')))
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers'), turn.get('category')))
stale_entries = []
for key, (resp, _) in session.cache.responses.items():
if resp.url not in urls and not any(step.url in urls for step in resp.history):
Expand All @@ -399,7 +399,7 @@ def cache_refresh(session, solvers):
for filename in sorted(glob('games/*.json')):
game = load(open(filename))
for turn in game.get('questions'):
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers')))
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers'), turn.get('category')))
cache_misses = [
url for url in urls if not session.cache.create_key(
session.prepare_request(Request('GET', url))
Expand Down Expand Up @@ -441,7 +441,7 @@ def cache_export(session, solvers):
urls = []
for solver in solvers:
for turn in game.get('questions'):
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers')))
urls.extend(solver.build_urls(turn.get('question'), turn.get('answers'), turn.get('category')))
url_keys = [session.cache.create_key(session.prepare_request(Request('GET', url))) for url in urls]
conn = connect(':memory:')
cur = conn.cursor()
Expand Down
26 changes: 15 additions & 11 deletions solvers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Solvers for the HQ Trivia bot project """
import re
import sys
from urllib.parse import quote_plus
from urllib.parse import quote_plus, unquote_plus
from bs4 import BeautifulSoup
from utils import Colours, get_raw_words

Expand All @@ -13,13 +13,13 @@ class BaseSolver(object):
service_url = None

@staticmethod
def build_queries(question_text, answers):
def build_queries(question_text, answers, category):
""" build queries with question text and answers """
raise NotImplementedError()

def build_urls(self, question_text, answers):
def build_urls(self, question_text, answers, category):
""" build URLs with search queries """
queries = self.build_queries(question_text, answers)
queries = self.build_queries(question_text, answers, category)
return [self.service_url.format(quote_plus(query)) for query in queries]

@staticmethod
Expand Down Expand Up @@ -72,7 +72,7 @@ class GoogleAnswerWordsSolver(BaseSolver):
service_url = 'https://www.google.co.uk/search?pws=0&q={}'

@staticmethod
def build_queries(question_text, answers):
def build_queries(question_text, answers, category):
""" build queries with question text and answers """
return [question_text]

Expand Down Expand Up @@ -105,7 +105,7 @@ class GoogleResultsCountSolver(BaseSolver):
service_url = 'https://www.google.co.uk/search?pws=0&q={}'

@staticmethod
def build_queries(question_text, answers):
def build_queries(question_text, answers, category):
""" build queries with question text and answers """
return ['%s "%s"' % (question_text, answer) for answer in answers.values()]

Expand All @@ -132,21 +132,25 @@ class WolframAlphaAnswerWordsSolver(BaseSolver):
service_url = 'http://api.wolframalpha.com/v1/result?appid=4H762W-PQ7735Q7T6&timeout=2&i={}'

@staticmethod
def build_queries(question_text, answers):
def build_queries(question_text, answers, category):
""" build queries with question text and answers """
return ['{} {}'.format(question_text, ', '.join(answers.values()))]
if 'Which of these' in question_text and category in ['Geography', 'Literature ']:
question_text = re.sub(r'Which of these( [^ ]*)( is)?( NOT)?', r'Is {}\1', question_text)
return [question_text.format(answer) for answer in answers.values()]
return []

@staticmethod
def get_answer_matches(response, _index, answers, matches):
""" get answer occurences for response """
result = BeautifulSoup(response.text, "html5lib").text
print(response.url)
print('Response: {}'.format(result))
print('{}: {}{}{}'.format(unquote_plus(response.url.split('&i=')[1]), \
Colours.BOLD.value, result, Colours.ENDC.value))
if result != 'Wolfram|Alpha did not understand your input':
results_words = get_raw_words(result)
for index, answer in answers.items():
answer_words = get_raw_words(answer)
matches[index] += results_words.count(answer_words)
for index, count in matches.items():
print('{}: {}'.format(index, Colours.BOLD.value + str(count) + Colours.ENDC.value))
print('{}: {} '.format(index, Colours.BOLD.value + str(count) + Colours.ENDC.value), end='', flush=True)
print('\n')
return matches

0 comments on commit a4d3e5b

Please sign in to comment.