1
0
mirror of https://github.com/RussellChamp/tilde-projects.git synced 2024-06-15 05:06:36 +00:00
tilde-projects/Code/irc/util/defineWord.py
2019-01-29 10:04:31 -05:00

35 lines
870 B
Python

#!/usr/bin/python3
import requests
from bs4 import BeautifulSoup
import random
def define(word):
defs = []
url = "http://www.merriam-webster.com/dictionary/{}".format(word)
soup = BeautifulSoup(requests.get(url).content, "html.parser")
head = soup.find("div", id="headword")
if head:
for p in head.find_all("p"):
defs.append(p.text)
return defs
key = open("/home/krowbar/.secret/key").readline().rstrip()
def defWord(word, short=True):
defs = []
url = "http://www.dictionaryapi.com/api/v1/references/collegiate/xml/{}?key={}".format(
word, key
)
soup = BeautifulSoup(requests.get(url).content, "html5lib")
entry = soup.find("entry")
if entry:
for d in entry.find_all("dt"):
defs.append(d.text)
if short:
return " ".join(defs)
else:
return defs