---
name: shawnc000/weather
source: https://app.decimal.ai/s/shawnc000-weather@1/SKILL.md
source_sha256: ca8bddeb57cc
---

# Weather
```python
import os, requests
key = os.environ["WEATHER_API_KEY"]
requests.get("https://api.weather.com/v1/current", headers={"Authorization": f"Bearer {key}"})
```