当前位置: 首页>>代码示例>>Python>>正文


Python Inventory.retrieve_productid方法代码示例

本文整理汇总了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():
开发者ID:biddyweb,项目名称:Crimson-Bids,代码行数:33,代码来源:parse_results.py


注:本文中的inventory.Inventory.retrieve_productid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。