Metadata-Version: 2.4
Name: costpulse
Version: 0.1.0
Summary: Find the cheapest AWS region for any service. 30+ regions compared in one call.
Author-email: Waltsoft <vivek@waltsoft.net>
License: MIT
Project-URL: Homepage, https://costpulse.waltsoft.net
Project-URL: Repository, https://github.com/awsdataarchitect/costpulse-cli
Keywords: aws,pricing,finops,cloud-cost,regions,optimization
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# CostPulse

Find the cheapest AWS region for any service. 30+ regions compared in one API call.

## Install

```bash
pip install costpulse
```

## Usage

```bash
# Find cheapest region for EC2 m5.xlarge
costpulse cheapest ec2 --sku m5.xlarge

# Compare Lambda pricing across specific regions
costpulse compare lambda --sku Lambda-GB-Second --regions us-east-1,eu-west-1,ap-southeast-1

# Calculate savings by moving from eu-west-1
costpulse savings ec2 eu-west-1 --sku m5.xlarge
```

## API Key

Get an API key at https://agents.waltsoft.net/products/costpulse

```bash
export COSTPULSE_KEY=cp_live_your_key_here
costpulse cheapest ec2 --sku m5.xlarge
```

Or pass inline:
```bash
costpulse cheapest ec2 --sku m5.xlarge --key cp_live_your_key
```

## JSON Output

```bash
costpulse cheapest lambda --sku Lambda-GB-Second --json
```

## Pricing

- $0.01/query via API key or x402
- Free tier: 10 queries/day from landing page

## Links

- API: https://costpulse.waltsoft.net
- Marketplace: https://agents.waltsoft.net/products/costpulse
- Author: [Waltsoft](https://waltsoft.net)
