Run Python scripts on the cloud with uv and Coiled
With uv + Coiled, you can: - Declare script-specific dependencies directly in your Python file (`uv add --script`) - Specify runtime config (container, region, hardware) with inline # COILED comments `uvx coiled batch run uv run process.py` Prefer a CLI-only approach? You can also do all this in a single command from your terminal: uvx coiled batch run \ --region us-east-2 \ --container ghcr.io/astral-sh/uv:debian-slim \ uv run \ --with “pandas pyarrow s3fs” \ process.py Compare that to something like AWS Lambda or AWS Batch, where you’d typically need to: - Package your script and dependencies into a ZIP file or build a Docker image - Configure IAM roles, triggers, and permissions - Handle versioning, logging, or hardware constraints With Coiled, there’s: - No YAML jungle - No clicking around in the AWS console - No K8s Just Python on the cloud without the overhead. Full walkthrough: https://docs.coiled.io/blog/uv-coiled-cloud-scripts.html