Metadata-Version: 2.4
Name: costpulse
Version: 0.1.1
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.

**Hot: Bedrock pricing varies up to 38% across regions.** Running Claude/Nova in the wrong region costs you thousands.

## Install

```bash
pip install costpulse
```

## Usage

```bash
# Find cheapest region for Bedrock Nova Pro (input tokens)
costpulse cheapest bedrock --sku Nova2.0Pro-text-input-tokens-cross-region-global

# Find cheapest region for EC2 m5.xlarge
costpulse cheapest ec2 --sku BoxUsage:m5.xlarge

# Compare Bedrock pricing across specific regions
costpulse compare bedrock --sku Nova2.0Pro-text-input-tokens-cross-region-global --regions us-east-1,eu-west-1,ap-southeast-1

# Calculate savings by moving from eu-west-1
costpulse savings bedrock eu-west-1 --sku Nova2.0Pro-text-input-tokens-cross-region-global
```

## Why Bedrock Users Need This

- Nova Pro input tokens: **$0.00125/1K** in us-east-1 vs **$0.00201/1K** in eu-south-1 (38% more!)
- Running 1M tokens/day in the wrong region = **$228/year wasted**
- No tool compares Bedrock pricing across regions — AWS Calculator doesn't do this

## API Key

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

```bash
export COSTPULSE_KEY=cp_live_your_key_here
costpulse cheapest bedrock --sku Nova2.0Pro-text-input-tokens-cross-region-global
```

## Services Supported

ec2, lambda, rds, s3, dynamodb, cloudfront, sqs, sns, kinesis, elasticache, sagemaker, glue, athena, redshift, eks, ecs, apigateway, **bedrock**

## JSON Output

```bash
costpulse cheapest bedrock --sku Nova2.0Pro-text-input-tokens-cross-region-global --json
```

## Pricing

- $0.01/query via API key or x402
- Free tier: 10 queries/day from landing page
- AI agents pay automatically via x402 (no signup)

## Links

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