__init__.pyā¢861 B
"""
Chess MXCP Python tools package.
"""
# Import the client initialization to ensure it runs when the package is imported
from chess_client import initialize_client, cleanup_client
# Import all tool functions
from player_tools import (
get_player_profile,
get_player_stats,
is_player_online,
get_player_current_games,
get_player_games_by_month,
get_player_game_archives,
download_player_games_pgn
)
from other_tools import (
get_titled_players,
get_club_profile,
get_club_members
)
__all__ = [
# Player tools
'get_player_profile',
'get_player_stats',
'is_player_online',
'get_player_current_games',
'get_player_games_by_month',
'get_player_game_archives',
'download_player_games_pgn',
# Other tools
'get_titled_players',
'get_club_profile',
'get_club_members',
]