summary refs log tree commit diff
path: root/commands/wotd
diff options
context:
space:
mode:
authornoa2024-01-03 10:33:14 +0000
committernoa2024-01-03 10:33:14 +0000
commitbf0cf3862464b741fac3044c7898c1aeb9e9cd62 (patch)
tree9c03ce5fd45cb87b15ed2743a795234f65bf0f74 /commands/wotd
parentc6dcab9d7ead82b6cf7d985c3fa46527dcccc7b2 (diff)
Move all commands into commands/ subdirectory
Diffstat (limited to 'commands/wotd')
-rwxr-xr-xcommands/wotd15
1 files changed, 15 insertions, 0 deletions
diff --git a/commands/wotd b/commands/wotd
new file mode 100755
index 0000000..933a021
--- /dev/null
+++ b/commands/wotd
@@ -0,0 +1,15 @@
+#!/usr/bin/env python3
+
+from urllib.request import Request, urlopen
+from bs4 import BeautifulSoup
+
+req = Request("https://www.oed.com/", headers={"User-Agent": "Mozilla/5.0"})
+soup = BeautifulSoup(urlopen(req), "html.parser")
+
+#wotd_div = soup.find('div', attrs={'class': 'wotd'})
+#wotd_word = word_div.find('a').get_text()
+wotd_word = soup.find("div", attrs={"class": "wotd"}).h3.a.get_text()
+
+
+print("The oxford english dictionary word of the day is " + wotd_word + "!")
+