### Running Python Script with API Key Source: https://github.com/the-odds-api/samples-python/blob/master/README.md Executes the main Python script `odds.py` to fetch sports odds using the provided API key. This command initiates the process described in the 'Get Started' section. ```Shell python odds.py --api-key YOUR_API_KEY ``` -------------------------------- ### Building and Running Docker Container Source: https://github.com/the-odds-api/samples-python/blob/master/README.md Provides commands to build a Docker image for the sample application and then run the Python script inside the container, mounting the current directory. This allows running the sample without installing Python dependencies directly on the host. ```Shell docker build -t theoddsapi/sample:latest . ``` ```Shell docker run -t -i --rm -v "$(pwd)":/usr/src/app/ theoddsapi/sample:latest python odds.py --api-key YOUR_API_KEY ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.