Manage a Bring! shopping list — add items, remove items, mark items as completed, and check what's on the list.
```bash
export BRING_EMAIL="your-email@example.com"
export BRING_PASSWORD="your-password"
```
Or add them to a .env file in your project root.
> If you use Google login for Bring!, go to your Bring! account settings and set a separate password first.
All commands use bring.py in this skill's directory. Adjust the path based on where you installed the skill.
uv run --with bring-api --with python-dotenv python bring.py list --json
uv run --with bring-api --with python-dotenv python bring.py add "Milk" "Eggs" "Butter:Irish"
uv run --with bring-api --with python-dotenv python bring.py remove "Milk"
uv run --with bring-api --with python-dotenv python bring.py complete "Eggs"
pip install -r requirements.txt
python bring.py list --json
python bring.py add "Milk" "Eggs" "Butter:Irish"
python bring.py remove "Milk"
python bring.py complete "Eggs"
Milk:low fat)BRING_EMAIL and BRING_PASSWORD environment variablesname:specificationbring-api, python-dotenv) are handled inline by uv run --with, or via pip install -r requirements.txt共 1 个版本