Spaces:
Sleeping
Sleeping
File size: 638 Bytes
8af0e51 202595b 8af0e51 202595b 8af0e51 202595b 8af0e51 202595b 8af0e51 202595b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | ---
title: WBC Analytics Assistant
emoji: ⚾
colorFrom: blue
colorTo: indigo
sdk: docker
pinned: false
app_port: 7860
---
# WBC Analytics Assistant
A real-data Streamlit application for World Baseball Classic analytics, matchups,
market edge detection, and betting research.
## Runtime
This Space uses Docker because Hugging Face no longer provides Streamlit as a built-in SDK.
## Required Secrets
Set these in the Space settings:
- `ODDS_API_KEY`
- `OPENWEATHER_API_KEY`
## Local Run
```bash
docker build -t wbc-assistant .
docker run -p 7860:7860 \
-e ODDS_API_KEY=your_key \
-e OPENWEATHER_API_KEY=your_key \
wbc-assistant |