Fold, call, or raise

PokerBot

A poker trainer that suggests fold, call, or raise based on hand strength.

PokerBot screenshot

PokerBot is a practice app where you play hands and get a suggested action from a Python engine. It is meant for training, not for playing real money. The frontend deals cards, and the backend returns fold, call, or raise based on hand strength.

  1. 1

    The React app deals rounds and sends hole card info to a Node backend over WebSockets.

  2. 2

    The backend calls a Python script that scores the hand with the treys library.

  3. 3

    Based on thresholds, it returns fold, call, or raise, and can size a raise relative to the pot.

  4. 4

    The suggestion comes back to the client so you can compare it with what you would have done.