35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
from datetime import datetime
|
|
|
|
import requests
|
|
from bs4 import BeautifulSoup
|
|
|
|
from ..util import Context, Prediction
|
|
|
|
|
|
def clock(context: Context) -> Prediction:
|
|
"""
|
|
It's nighttime if Bing says it's daytime.
|
|
"""
|
|
p = Prediction()
|
|
p.weight = 0.01
|
|
|
|
headers = {
|
|
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36'}
|
|
r = requests.get("https://www.bing.com/search?q=time+in+denmark", headers=headers)
|
|
soup = BeautifulSoup(r.content, features='html5lib')
|
|
time_str = soup.find("div", {"id": "digit_time"}).text
|
|
|
|
time = datetime.strptime(time_str, "%H:%M")
|
|
night = time.hour < 6 or time.hour >= 22
|
|
|
|
time_description = "nighttime" if night else "daytime"
|
|
time_description_oppersite = "daytime" if night else "nighttime"
|
|
|
|
p.reasons.append(f"Bing says its {time_description}.")
|
|
p.reasons.append(f"But we don't really trust it (who does?).")
|
|
p.reasons.append(f"Let's guess it's {time_description_oppersite}.")
|
|
|
|
p.probability = 1 - p.probability
|
|
|
|
return p
|