-
-
Save icebeam7/e0cd8e88aed093dd45b18d8f2a3b104f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while (export.status == "Exporting"): | |
print ("Waiting 10 seconds...") | |
time.sleep(10) | |
exports = trainer.get_exports(project.id, iteration_id) | |
# Localice la exportación para esta iteración y verifique su estado | |
for e in exports: | |
if e.platform == export.platform and e.flavor == export.flavor: | |
export = e | |
break | |
print("Export status is: ", export.status) | |
print("Export: done") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment