# S3 **Repository Path**: wangyiyang/S3 ## Basic Information - **Project Name**: S3 - **Description**: golang library for uploading file to Amazon s3. Solely to PUT object to S3 bucket. - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-10 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README go get github.com/apisit/s3 import ( "github.com/apisit/s3" ) //using it accessKey := "key" secretKey := "key" keyFilename := "something.jpg" filename := "something.jpg" bucketName := "sps-photos" amazonS3 := s3.Init(accessKey, secretKey) amazonS3.Upload(keyFilename, bucketName, filename)