start xeserv.us plugin

This commit is contained in:
Christine Dodrill 2015-11-02 17:28:49 -08:00
parent b207bdc735
commit 739165cac2
1 changed files with 21 additions and 0 deletions

21
plugins/xeserv.py Normal file
View File

@ -0,0 +1,21 @@
from util import hook
import requests
@hook.command
def minecraft(pls):
r = requests.get("http://xeserv.us/api/minecraft.json")
data = r.json()
if not data["online"]:
return "fluttershy.yochat.biz is down, oh noes"
if data["players"] == None:
return "fluttershy.yochat.biz has no online players"
return "fluttershy.yochat.biz has the following players: " + (reduce (lambda x, y: x + " " + y), data["players"])
@hook.command
def tf2(pls):
pass