A Flask web application for tracking and analyzing NBA player prop bets on PrizePicks.
- Track parlays and individual prop bets
- Support for normal and flex plays
- Detailed analytics dashboard
- Visual representation of betting patterns
- Player and prop type performance analysis
- Python 3.8+
- pip (Python package installer)
- Create and activate a virtual environment:
# Windows
python -m venv venv
venv\Scripts\activate
# Mac/Linux
python -m venv venv
source venv/bin/activate- Install required packages:
pip install -r requirements.txt- Start the Flask server:
python run.py- Open your web browser and navigate to:
http://localhost:5000
-
Adding a Parlay:
- Click "Add Parlay" button
- Enter entry amount
- Choose play type (Normal/Flex)
- Add legs with player, prop type, and line
- Submit the parlay
-
Updating Results:
- Find parlay in the main table
- Click "Update" button
- Enter actual results
- Add profit/loss amount
- Save changes
-
Viewing Analytics:
- Visit the Dashboard page
- View overall statistics
- Check performance by player/prop type
- Analyze trends and patterns
prizepicks_tracker/
├── app/
│ ├── __init__.py
│ ├── models.py
│ ├── routes.py
│ ├── utils/
│ ├── static/
│ └── templates/
├── config.py
├── run.py
├── init_db.py
└── test_data.py