我是python的新手,我编写了简单的脚本来将按时间排序的所有图像发送到API。此代码仅作用于一个文件(jpg),无法将其余图像发送到文件夹中。我想如果我运行此代码,它只是在等待将某些图像添加到当前文件夹中时,当图像位于文件夹中时,它将根据最初存在的图像按时间发送到API。我很困惑,任何帮助都将被申请!
import glob
import argparse
import requests
import json
import time
import os
def main():
result = []
file = glob.glob("/path/to/dir/*.jpg")
regions = ['id']
time_to_wait = 10000
time_counter = 0
while not os.path.exists(file):
time.sleep(1)
time_counter += 1
if time_counter > time_to_wait: break
print("waiting for file...")
if os.path.isfile(file):
with open(file, 'rb') as fp:
response = requests.post(
'https://GET_API/',
data=dict(regions=regions),
files=dict(upload=fp),
headers={'Authorization': 'Token ' + 'XXX'})
result.append(response.json())
resp_dict = json.loads(json.dumps(result, indent=2))
if resp_dict[0]['results']:
num=resp_dict[0]['results'][0]['plate']
print(f"DETECTED NUMBER: {num}")
os.remove(file)
else:
print("file doesn't exists!")
if __name__ == '__main__':
main()
答案 0 :(得分:2)
您没有在每次迭代中更新file
。也许这就是为什么不再检测到新文件的原因。 file
也需要被视为一个列表,因此我想您应该遍历file
。您的while循环应如下所示:
while True:
files = glob.glob(os.path.join('path', 'to', 'dir', '*.jpg'))
for file in files:
if os.path.isfile(file):
with open(file, 'rb') as fp:
# Upload and delete
# sleep