A Python robot that edits Wikipedia and interacts with people over IRC 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.

преди 12 години
преди 9 години
преди 12 години
преди 12 години
преди 11 години
преди 12 години
преди 12 години
преди 11 години
преди 12 години
преди 11 години
преди 12 години
преди 12 години
преди 12 години
преди 3 години
преди 11 години
преди 11 години
преди 12 години
преди 12 години
преди 12 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 12 години
преди 12 години
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2009-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a copy
  6. # of this software and associated documentation files (the "Software"), to deal
  7. # in the Software without restriction, including without limitation the rights
  8. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. # copies of the Software, and to permit persons to whom the Software is
  10. # furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. from earwigbot.commands import Command
  23. class Langcode(Command):
  24. """Convert a language code into its name (or vice versa), and give a list
  25. of WMF sites in that language."""
  26. name = "langcode"
  27. commands = ["langcode", "lang", "language"]
  28. def process(self, data):
  29. if not data.args:
  30. self.reply(data, "Please specify a language code or name.")
  31. return
  32. code, lcase = data.args[0], data.args[0].lower()
  33. site = self.bot.wiki.get_site()
  34. matrix = site.api_query(action="sitematrix")["sitematrix"]
  35. del matrix["count"]
  36. del matrix["specials"]
  37. for site in matrix.values():
  38. if not site["name"]:
  39. continue
  40. name = site["name"].encode("utf8")
  41. localname = site["localname"].encode("utf8")
  42. if site["code"] == lcase:
  43. if name != localname:
  44. name += " ({0})".format(localname)
  45. sites = ", ".join([s["url"] for s in site["site"]])
  46. msg = "\x0302{0}\x0F is {1} ({2})".format(code, name, sites)
  47. self.reply(data, msg)
  48. return
  49. elif name.lower() == lcase or localname.lower() == lcase:
  50. if name != localname:
  51. name += " ({0})".format(localname)
  52. sites = ", ".join([s["url"] for s in site["site"]])
  53. msg = "{0} is \x0302{1}\x0F ({2})"
  54. self.reply(data, msg.format(name, site["code"], sites))
  55. return
  56. self.reply(data, "Language \x0302{0}\x0F not found.".format(code))