コード例 #1
0
ファイル: feds.py プロジェクト: NotFoundError/Totalxbot
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)
コード例 #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))
コード例 #3
0
ファイル: feds.py プロジェクト: anshuman852/awhdwao
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))