You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# You can optionally generate analytics graphs at each step of
# the loop. These PDF files can then be picked up by automation
# software and included in your lab notebook, etc.
print('Generating analytics files.')
# Generate any analytics files that are available for this generation.
# Since the `auto_task_timeout` option has been set, the script will
# block until the files are ready to be downloaded.
daptics.generate_analytics()
print('Downloading analytics files.')
# Fetch the PDF analytics files via authenticated HTTP, and save them
# to the './output' directory, where your automation workflow
# software can pick them up.
daptics.download_all_analytics_files(daptics.analytics, output_path, name_by_gen=True)
print('Generation {} analytics are now available in output directory.'.format(gen))
It appears to execute fine, yielding
Generating analytics files.
Task status = running after 6 retries...
Task completed!
Downloading analytics files.
Generation 2 analytics are now available in output directory.
But listing the output directory shows no files have been downloaded. I checked to make sure output_path = './output'.
The text was updated successfully, but these errors were encountered:
In Test.ipynb, the analytics cell reads:
It appears to execute fine, yielding
But listing the output directory shows no files have been downloaded. I checked to make sure
output_path = './output'
.The text was updated successfully, but these errors were encountered: