Example #1
0
def getsongother():
    otherUser = request.args.get("otherUser", "").strip()
    return json.dumps(util.getSong(otherUser))
Example #2
0
def getsong():
    username = session["user"]
    print "username: " + username
    return json.dumps(util.getSong(username))