Create a new S3 connection instance with the given name.
(self, file_name)
| 36 | self.bucket_url = bucket_url |
| 37 | |
| 38 | def get_key(self, file_name): |
| 39 | """Create a new S3 connection instance with the given name.""" |
| 40 | return self.conn.resource("s3").Object(self.bucket, file_name) |
| 41 | |
| 42 | def get_bucket(self): |
| 43 | """Return the bucket being used.""" |
no outgoing calls
no test coverage detected