Beispiel #1
0
def __stats__():
    R = 0
    for O in sql.get_all_fban_users_global():
        R = R + 1

    S = 0
    for O in sql.get_all_feds_users_global():
        S = S + 1

    return "{} fbanned users, across {} feds".format(R, S)
Beispiel #2
0
def __stats__():
	all_fbanned = sql.get_all_fban_users_global()
	all_feds = sql.get_all_feds_users_global()
	return "{} fbanned users, across {} feds".format(len(all_fbanned), len(all_feds))
Beispiel #3
0
def __stats__():
	all_fbanned = sql.get_all_fban_users_global()
	all_feds = sql.get_all_feds_users_global()
	return "{} The user is banned, on the {} Federation".format(len(all_fbanned), len(all_feds))