gitextract_2lg3vbht/ ├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── awspricecalculator/ │ ├── __init__.py │ ├── awslambda/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── common/ │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── errors.py │ │ ├── models.py │ │ └── phelper.py │ ├── datatransfer/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── dynamodb/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── ec2/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── emr/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── kinesis/ │ │ ├── __init__.py │ │ └── pricing.py │ ├── rds/ │ │ ├── __init__.py │ │ └── pricing.py │ └── redshift/ │ ├── __init__.py │ └── pricing.py ├── cloudformation/ │ ├── function-plus-schedule.json │ └── lambda-metric-filters.yml ├── functions/ │ └── calculate-near-realtime.py ├── install.sh ├── requirements-dev.txt ├── requirements.txt ├── scripts/ │ ├── README.md │ ├── emr-pricing.py │ ├── get-latest-index.py │ ├── lambda-optimization.py │ └── redshift-pricing.py ├── serverless.env.yml ├── serverless.yml ├── setup.py └── test/ └── events/ └── constant-tag.json