![]() |
A Python package for NCAA March Madness bracket simulation combining real-time ratings from Warren Nolan with customizable tournament simulations. |
pip install bigdance
from bigdance import Standings, simulate_bracket_pool
# Get current team ratings
standings = Standings()
# Simulate a bracket pool
results = simulate_bracket_pool(standings, num_entries=100)
print(results)
- Real-time team ratings and rankings from Warren Nolan
- Customizable bracket simulation
- Tournament pool analysis
- Integration with common bracket pool formats
To install the package for development:
git clone https://github.com/tefirman/bigdance
cd bigdance
pip install -e .