Python Forum
Heeelp! I'm stuck... Girl is freakin' here :(
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Heeelp! I'm stuck... Girl is freakin' here :(
#4
(Jan-08-2020, 04:14 PM)buran Wrote:
(Jan-08-2020, 03:48 PM)Clunk_Head Wrote: ou do not appear to be calling lambda_handler anywhere in your code
obviously the whole if block is part of the function - e.g. it uses event

Ahh, that changes the code a bit more then
import boto3
def lambda_handler(event, context):
    s3 = boto3.client("s3")
  
    if event:
        print("Event : ", event)
        file_obj = event["Records"][0]
        filename = str(file_obj['s3']['object']['key'])
        print("Filename: " , filename)
        fileObj = s3.get_object(Bucket = "chargifytesting" , Key=filename)
        file_content = fileObj["Body"].read().decode('utf-8')
        print(file_content)
Reply


Messages In This Thread
RE: Heeelp! I'm stuck... Girl is freakin' here :( - by Clunk_Head - Jan-08-2020, 05:42 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020