for function get_status(), there are 2 for loop: the outer one is loop on result.files, while the inner one loop on files.urls. Their local loop variable share the same name "i" and will cause infinite loop in special use case, change the name of inner one to "j" fix the issue.
for function get_status(), there are 2 for loop: the outer one is loop on result.files, while the inner one loop on files.urls. Their local loop variable share the same name "i" and will cause infinite loop in special use case, change the name of inner one to "j" fix the issue.