diff --git a/examples/artifacts_toy.py b/examples/artifacts_toy.py index b9558f32..ce82294a 100644 --- a/examples/artifacts_toy.py +++ b/examples/artifacts_toy.py @@ -33,6 +33,8 @@ im = Image.open('samples/dancing.jpg') task.upload_artifact('pillow_image', im) # add and upload a folder, artifact_object should be the folder path task.upload_artifact('local folder', artifact_object='samples/') +# add and upload a wildcard +task.upload_artifact('local folder', artifact_object='samples/*.jpg') # do something sleep(1.)