libs.commands.report
レポート生成モジュール
Exports:
libs.commands.report.matrix
: 直接対戦マトリックス生成libs.commands.report.monthly
: 月間成績集計libs.commands.report.results_list
: 個人/チーム成績一覧表生成libs.commands.report.results_report
: 成績報告書作成libs.commands.report.winner
: 月間上位5名表示
1"""レポート生成モジュール 2 3Exports: 4- `libs.commands.report.matrix`: 直接対戦マトリックス生成 5- `libs.commands.report.monthly`: 月間成績集計 6- `libs.commands.report.results_list`: 個人/チーム成績一覧表生成 7- `libs.commands.report.results_report`: 成績報告書作成 8- `libs.commands.report.winner`: 月間上位5名表示 9""" 10 11from . import matrix, monthly, results_list, results_report, winner 12 13__all__ = ["matrix", "monthly", "results_list", "results_report", "winner"]