CoolFace
Apppublic

matiqorb/spades-agent-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
__init__.py14 linesDownload Raw Back to spades_engine
1from .bots import AdversarialBot, ExpertPolicy, GreedyBot, SafeBot2from .engine import Card, SpadesGame, card_to_index, index_to_card3 4__all__ = [5    "Card",6    "SpadesGame",7    "card_to_index",8    "index_to_card",9    "SafeBot",10    "GreedyBot",11    "AdversarialBot",12    "ExpertPolicy",13]14