Additional IRC commands and bot tasks for EarwigBot https://en.wikipedia.org/wiki/User:EarwigBot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Public domain, 2013 Legoktm
  4. #
  5. from json import loads
  6. import re
  7. from urllib import quote
  8. from urllib2 import urlopen
  9. from earwigbot.commands import Command
  10. class UrbanDictionary(Command):
  11. """Get the definition of a word or phrase using Urban Dictionary."""
  12. name = "urban"
  13. commands = ["urban", "urbandictionary", "dct", "ud"]
  14. def process(self, data):
  15. if not data.args:
  16. self.reply(data, "What do you want to define?")
  17. return
  18. url = "http://api.urbandictionary.com/v0/define?term={0}"
  19. q = quote(' '.join(data.args), safe="")
  20. query = urlopen(url.format(q)).read()
  21. res = loads(query)
  22. if res['result_type'] == 'exact':
  23. definition = re.sub(r"\s+", " ", res['list'][0]['definition'])
  24. example = re.sub(r"\s+", " ", res['list'][0]['example'])
  25. if definition and definition[-1] not in (".", "!", "?"):
  26. definition += "."
  27. msg = '{0} \x02Example\x0F: {1}'.format(definition.encode("utf8"),
  28. example.encode("utf8"))
  29. self.reply(data, msg)
  30. elif res['result_type'] == 'fulltext':
  31. L = [i['word'] for i in res['list']]
  32. msg = 'Here are some close matches: {0}.'
  33. self.reply(data, msg.format(u", ".join(L).encode("utf8")))
  34. else:
  35. self.reply(data, 'Sorry, no results found.')