amazon-fees

Estimate your fees


License
MIT
Install
pip install amazon-fees==1.0.0

Documentation

Install

pip install amazon_fees

Example

from python_amazon_fees.parse import AmazonFeesCalculator

def handler(length, width, height, weight, is_media=False, is_apparel=False, is_pro=False):
  calculator = AmazonFeesCalculator(length, width, height, weight, is_media, is_apparel, is_pro)
  return calculator.fees()

print(handler(1,1,1,1))