Skip to content

Commit

Permalink
offers file not properly copied from base_url (aws-samples#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
BastLeblanc authored Mar 21, 2024
1 parent cc3b432 commit 42c3975
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
filename_items, _ = urllib.request.urlretrieve( base_url + 'csvs/items.csv' , '/tmp/items.csv')
filename_users, _ = urllib.request.urlretrieve( base_url + 'csvs/users.csv' , '/tmp/users.csv')
filename_interactions, _ = urllib.request.urlretrieve( base_url + 'csvs/interactions.csv' , '/tmp/interactions.csv')
filename_offer_interactions, _ = urllib.request.urlretrieve( base_url + 'csvs/interactions.csv' , '/tmp/offer_interactions.csv')
filename_offer_interactions, _ = urllib.request.urlretrieve( base_url + 'csvs/offer_interactions.csv' , '/tmp/offer_interactions.csv')

# upload these files to the S3 stack bucket where personalize will have the right s3 policies
s3 = boto3.client('s3')
Expand Down

0 comments on commit 42c3975

Please sign in to comment.