這個是最簡單的任務迴圈形式,由於沒有終止條件,所以會一直執行下去。
新建乙個觸發檔案,當檢測到這個檔案,就執行 python 指令碼,然後更改檔案觸發檔名。
**如下:
import sys
import os
import time
start=
'ready'
while
true
:if os.path.exists(start)
: current_time=time.strftime(
'%y-%m-%d-%h-%i-%m-%s'
,time.localtime(time.time())
) script =
'python3 matching.py input.xlsx > output_.xlsx'
.format
(current_time=current_time)
os.system(script)
time.sleep(60)
print
(script)
os.system(
'mv '
+ start +
' '
+ start +
'_completed'
)
使用Python進行自動化測試
原文 目前大家對python都有乙個共識,就是他對測試非常有用,自動化測試裡python用途也很廣,但是python到底怎麼進行自動化測試呢?今天就簡單的向大家介紹一下怎麼使用python進行自動化測試,本文只是自己的一點點分享,若有錯誤,請大家多多批評指正。這裡主要介紹的是一些python測試的框...
如何使用Python與Mysql進行資料互動
自己的夢想需要你自己去實現 python 在mysql的官網獲取python與mysql的互動手冊mysql官方手冊 pythontodatabase.py import mysql.connector cnx mysql.connector.connect user root password 6...
如何使用Python標準庫進行效能測試
profile 和 cprofile 在 python 標準庫裡面有兩個模組可以用來做效能測試。1.乙個是 profile,它是乙個純 python 的實現,所以會慢一些,如果你需要對模組進行拓展,那麼這個模組比較合適。2.第二個是 cprofile,從名字就可以看出這是乙個 c 語言的實現版,官方...