本文整理汇总了Python中inventory.Inventory.retrieve_productid方法的典型用法代码示例。如果您正苦于以下问题:Python Inventory.retrieve_productid方法的具体用法?Python Inventory.retrieve_productid怎么用?Python Inventory.retrieve_productid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类inventory.Inventory
的用法示例。
在下文中一共展示了Inventory.retrieve_productid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: any
# 需要导入模块: from inventory import Inventory [as 别名]
# 或者: from inventory.Inventory import retrieve_productid [as 别名]
if any(attribute in word[1] for attribute in DNE_attributes):
if 'CARRIER-DNE' in word[1]:
title[word[0]] = q.search_NameValueList(item,'Carrier')
if 'STORAGE-DNE' in word[1]:
title[word[0]] = q.search_NameValueList(item,'Storage Capacity')
if 'MODEL-DNE' in word[1]:
title[word[0]] = q.search_NameValueList(item,'Model')
if 'COLOR-DNE' in word[1]:
title[word[0]] = q.search_NameValueList(item,'Color')
if q.rough_check(item) is False:
roughReject += 1
continue
if inventory.retrieve_productid(title) == -1:
print 'Reject! Unable to identify!\n'
unidentified += 1
continue
identified += 1
peters_machine_result = []
if q.run_peters_machine(item) is True: # run peters machine here
p_likenew += 1
peters_machine_result.append('like-new')
if q.run_peters_machine(item) is False: # run peters machine here
p_forparts += 1
peters_machine_result.append('for-parts')
if 'auction' in q.get_listing_type(item).lower():