Skip to content

NeLter is computer tool designed to help players improve at No Limit Texas Hold 'em

License

Notifications You must be signed in to change notification settings

aidan-smith/NeLter

Repository files navigation

NeLter

Table of Contents

Description

NeLter is computer tool designed to help amatuer players improve at No Limit Texas Hold 'em. It features a full fledged simulation game where the user can test their abilities against any number of computer opponents that employ a range analysis algorithm and basic strategy to mimic a real life opponent.

Installation

This project requires python3, pillow, and requests to be installed in order to run. Python3 can be downloaded here. Once downloaded run the code below (sourced here) for your respective operating system in a python file, and run the output in a terminal or command prompt instance.

MacOSX/Linux:

import sys
print(f'sudo "{sys.executable}" -m pip install pillow')
print(f'sudo "{sys.executable}" -m pip install requests')

Windows:

import sys
print(f'"{sys.executable}" -m pip install pillow')
print(f'"{sys.executable}" -m pip install requests')

Now to start the application run the nelter.py file with python. If you encounter errors ensure all of the python files and resources folder are present in the same directory as the driver file.

Shortcut Commands

The following methods can be used to manually perform the named action as the player who has action on them:

texas_holdem.hand.bet(amount=0)
texas_holdem.hand.call()
texas_holdem.hand.fold()

The following method will advance the game by one betting round manually:

texas_holdem.hand.progress_game()

The following method will trigger an immediate showdown:

texas_holdem.hand.showdown()

About

NeLter is computer tool designed to help players improve at No Limit Texas Hold 'em

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages