awspricing icon indicating copy to clipboard operation
awspricing copied to clipboard

Python library for AWS pricing.

Results 13 awspricing issues
Sort by recently updated
recently updated
newest added

Allow passing filters through to the boto3 client to reduce response times when requesting pricing information for resources that match specific attributes.

Hello Lyft team! Thanks for putting out this library, it has been very useful for me and others I've referred you to. Here is a simple code I'm trying to...

The library uses a excessive amount of memory, at least 2GB reading from cached data and as much as 3.5GB reading fresh data from the API. This results in excessive...

get only 1 region pricing list

Hello, Thank you for very helpful module. Is it possible to query GovCloud for pricing? I have not been able to succeed so far. The code below: client = boto3.client('ec2',...

This is my first ever pull request...bear with me I'm not sure how all this works yet. ;) I've added support I needed for pricing EBS volumes to get a...

Hi, my test python code is: ``` import awspricing ec2_offer = awspricing.offer('AmazonEC2') p = ec2_offer.ondemand_hourly( 't2.micro', operating_system='Linux', region='eu-west-1' ) print(p) # 0.0126 ``` The output is this error message here:...

Hi, I was looking for a wrapper for the boto3 pricing stuff and came across this, which pretty much does what i need but maybe with some caching mods for...

Since the release of : https://aws.amazon.com/about-aws/whats-new/2018/10/Amazon-EC2-now-offers-On-Demand-Capacity-Reservations/ For the ec2 products there is now a capacitystatus attribute that can be either UnusedCapacityReservation, AllocatedCapacityReservation or Used. This is causing collisions and any...

A new feature in the EC2Offer class. The function is called reserved_hourly_combinations. Given a single input `instance_name`, this function will output all valid combinations (region, lease contract length, offering class,...