range(len(lst))
вычисляется один раз, при заходе в цикл, а не вычисляется при каждой итерации.
должна поддерживать многопоточность
vcap = cv.VideoCapture("rtsp://192.168.1.2:8080/out.h264")
while(1):
ret, frame = vcap.read()
cv.imshow('VIDEO', frame)
cv.waitKey(1)
files = {'file1': open('some_project_file1.txt', 'rb'), 'file2': open('some_project_file2.txt', 'rb')}
response = requests.post(base_url+'/api/integration/v1/project/create', data=project_json, files=files)