本文整理匯總了Python中Function.exists方法的典型用法代碼示例。如果您正苦於以下問題:Python Function.exists方法的具體用法?Python Function.exists怎麽用?Python Function.exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Function
的用法示例。
在下文中一共展示了Function.exists方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: or
# 需要導入模塊: import Function [as 別名]
# 或者: from Function import exists [as 別名]
else:
download = False
# 判斷圖片寬高比
proportion = width / height
if proportion < pic_size['min']['proportion'] or (pic_size['max']['proportion'] and proportion > pic_size['max']['proportion']):
download = False
if not download:
Log.add('圖片尺寸不符,跳過')
continue
if download:
# 獲取文件名
# 此處不進行URL解碼,因為有些文件名神TM帶*之類的
file_name = info[1].split('/')[-1]
# 文件是否已存在?
if Function.exists(file_name):
Log.add(info[0] + ' 已存在,跳過')
continue
Log.add(str(i)+' - ' + info[0] + ' 開始下載……')
ts = time.time()
img = Http.get(info[1], {'Host': 'files.yande.re', 'Referer': 'https://yande.re/post/show/'+info[0]})
Log.add('下載完畢。耗時:'+str(int(time.time() - ts))+'s')
Function.write(file_name, img)
if end:
break
else:
break