I want to read the csv file from the s3 bucket using boto3 and upload it to external API using multipart/form-data request. so far I am able to read the csv
response = s3.get_object(Bucket=bucket, Key=key)
body = response['Body']
Not sure on how to convert this body into multipart. External api will be taking request in multipart/form-data. Any Suggestions would be helpful.