VibeBuilders.ai Logo
VibeBuilders.ai
mypoker

mypoker

changhongyan123
October 15, 2021
github

Term Project

Set up environment

using the conda or pyenv

  • conda create -n cs3243 python=2.7
  • source activate cs3243

replace the cs3243 with whatever name you want https://conda.io/docs/index.html

pip install PyPokerEngine
https://ishikota.github.io/PyPokerEngine/

testing installmement:

import pypokerengine   
print("hello world")

Create your own player

Example player


class RaisedPlayer(BasePokerPlayer):

  def declare_action(self, valid_actions, hole_card, round_state):
    #Implement your code
    return action

  def receive_game_start_message(self, game_info):
    pass

  def receive_round_start_message(self, round_count, hole_card, seats):
    pass

  def receive_street_start_message(self, street, round_state):
    pass

  def receive_game_update_message(self, action, round_state):
    pass

  def receive_round_result_message(self, winners, hand_info, round_state):
    pass

Example Game

The example game is in the example.py

Information for the game

valid_actions: vaild action list

[
    { "action" : "fold"  },
    { "action" : "call" },
    { "action" : "raise" }
]
OR 
[
    {"action": "fold"},
    {"action": "call"}
]

In the limited version, the user only allowed to raise for four times in one round street. In each round, the players can only play raise four times.[In the pre-flop street, the big blind is considered as a Raise action.]

Other information is similar to the PyPokerEngine,please check the detail about the parameter link

Vibe Score

LLM Vibe Score

0.379

Sentiment

Human Vibe Score

0.04206126209120221

Rate this Resource

Join the VibeBuilders.ai Newsletter

The newsletter helps digital entrepreneurs how to harness AI to build your own assets for your funnel & ecosystem without bloating your subscription costs.

Start the free 5-day AI Captain's Command Line Bootcamp when you sign up:

By subscribing, you agree to our Privacy Policy and Terms of Service.