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


Python Utils.renameFile方法代码示例

本文整理汇总了Python中utils.Utils.renameFile方法的典型用法代码示例。如果您正苦于以下问题:Python Utils.renameFile方法的具体用法?Python Utils.renameFile怎么用?Python Utils.renameFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在utils.Utils的用法示例。


在下文中一共展示了Utils.renameFile方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: parseFile

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import renameFile [as 别名]
 def parseFile(self):
     print 'Parsing product file...'
     productsRegular = []
     productsPromo = []
     # open products file and process items
     with open(Utils.getConfig()['productFile']) as json_file:
         json_data = json.load(json_file)
     for item in json_data:
         product = {}
         # not available products are omitted
         # if item['avail'] == self.PROD_NOT_AVAIL:
         #     continue
         product['id'] = long(item['id'])
         product['price'] = float(item['price'])
         product['category'] = item['cat']
         # product['name'] = data['name'].encode('utf-8')
         product['url'] = item['url'].encode('utf-8')
         # in case of regular product add it to separate table
         if item.get('oldPr', None) is None:
             product['date'] = self.dateTime[:10]
             productsRegular.append(product)
         else:
             product['old_price'] = item['oldPr']
             product['discount'] = item['disc']
             # product['description'] = data['descr'].encode('utf-8')
             product['url'] = item['url'].encode('utf-8')
             productsPromo.append(product)
     self.updateRegularProducts(productsRegular)
     self.updatePromoProducts(productsPromo)
     Utils.renameFile(Utils.getConfig()['productFile'])
开发者ID:eminaest,项目名称:decapromolist,代码行数:32,代码来源:process_data.py

示例2: parseFile

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import renameFile [as 别名]
 def parseFile(self):
     print "Parsing product file..."
     productsRegular = []
     productsPromo = []
     # open products file and process items
     with open(Utils.getConfig()["productFile"]) as json_file:
         json_data = json.load(json_file)
     for item in json_data:
         product = {}
         # not available products are omitted
         # if item['avail'] == self.PROD_NOT_AVAIL:
         #     continue
         try:
             product["id"] = long(item["id"])
             product["price"] = float(item["price"])
             product["category"] = item["cat"]
             # product['name'] = data['name'].encode('utf-8')
             product["url"] = item["url"].encode("utf-8")
             # in case of regular product add it to separate table
             if item.get("oldPr", None) is None:
                 product["date"] = self.dateTime[:10]
                 productsRegular.append(product)
             else:
                 product["old_price"] = item["oldPr"]
                 product["discount"] = item["disc"]
                 # product['description'] = data['descr'].encode('utf-8')
                 product["url"] = item["url"].encode("utf-8")
                 productsPromo.append(product)
         except:
             pass
     self.updateRegularProducts(productsRegular)
     self.updatePromoProducts(productsPromo)
     Utils.renameFile(Utils.getConfig()["productFile"])
开发者ID:thof,项目名称:decapromolist,代码行数:35,代码来源:process_data.py

示例3: finish

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import renameFile [as 别名]
 def finish(self):
     print("Więcej informacji: https://github.com/thof/decapromolist#decapromolist" + self.SPACES, file=self.mdFile)
     print(
         "PayPal: [email protected]_ (w razie gdyby ktoś chciał wspomóc projekt)" + self.SPACES,
         file=self.mdFile,
     )
     self.mdFile.close()
     Utils.renameFile(Utils.getConfig()["decapromolistFile"])
     Utils.saveJsonFile(Utils.getConfig()["decapromolistFile"], self.products)
开发者ID:thof,项目名称:decapromolist,代码行数:11,代码来源:prepare_results.py

示例4: saveSubcategories

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import renameFile [as 别名]
 def saveSubcategories(self, dataCat):
     Utils.renameFile(Utils.getConfig()["subcatFile"])
     Utils.saveJsonFile(Utils.getConfig()["subcatFile"], dataCat)
开发者ID:thof,项目名称:decapromolist,代码行数:5,代码来源:get_subcategories.py

示例5: __init__

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import renameFile [as 别名]
 def __init__(self):
     self.products = []
     Utils.renameFile(Utils.getConfig()["decapromolistMDFile"])
     self.mdFile = open(Utils.getConfig()["decapromolistMDFile"], "w")
     with open(Utils.getConfig()["subcatFile"]) as jsonFile:
         self.subcatData = json.load(jsonFile)
开发者ID:thof,项目名称:decapromolist,代码行数:8,代码来源:prepare_results.py


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