本文整理汇总了Python中amazonproduct.API.cart_create方法的典型用法代码示例。如果您正苦于以下问题:Python API.cart_create方法的具体用法?Python API.cart_create怎么用?Python API.cart_create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类amazonproduct.API
的用法示例。
在下文中一共展示了API.cart_create方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from amazonproduct import API [as 别名]
# 或者: from amazonproduct.API import cart_create [as 别名]
class Amazon:
def __init__(self):
self.api = API(locale='us');
self.cart_exists = False
self.items = {}
def get_asin_from_url(self, url):
parts = urlparse(url)
path_parts = parts.path.split("/")
max = len(path_parts)-1
reg = re.compile("^([A-Za-z0-9]{10})$")
while max >= 0:
result = reg.match(path_parts[max])
if result:
return path_parts[max]
max = max-1
return None
def get_item_by_asin(self, asin):
item = self.api.item_lookup(asin)
return item
def get_items(self, list):
items = Item.objects.filter(active=True, list=list)
for item in items:
self.items["%s" % item.asin] = item.quantity
def get_cart(self):
cart = self.api.cart_create(self.items)
print cart.Cart.PurchaseURL
print cart.Cart.SubTotal.FormattedPrice
# May need this at some point?
"""
for item in cart.Cart.CartItems:
print dir(item.CartItem)
"""
return cart
def main(self):
self.get_items()
self.get_cart()