my-aws-helpers 2.3.0__tar.gz → 2.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of my-aws-helpers might be problematic. Click here for more details.
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/PKG-INFO +1 -1
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/s3.py +8 -3
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/PKG-INFO +1 -1
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/setup.py +1 -1
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/README.md +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/api.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/auth.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/cognito.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/dynamo.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/errors.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/event.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/logging.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers/sfn.py +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/SOURCES.txt +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/dependency_links.txt +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/requires.txt +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/top_level.txt +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/my_aws_helpers.egg-info/zip-safe +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/setup.cfg +0 -0
- {my_aws_helpers-2.3.0 → my_aws_helpers-2.4.0}/tests/test_event.py +0 -0
|
@@ -45,8 +45,13 @@ class S3Location:
|
|
|
45
45
|
class S3:
|
|
46
46
|
client: boto3.client
|
|
47
47
|
|
|
48
|
-
def __init__(
|
|
48
|
+
def __init__(
|
|
49
|
+
self,
|
|
50
|
+
client: Optional[boto3.client] = None,
|
|
51
|
+
resource: Optional[boto3.resource] = None,
|
|
52
|
+
) -> None:
|
|
49
53
|
self.client = client if client else self._get_client()
|
|
54
|
+
self.resource = resource if resource else boto3.resource('s3')
|
|
50
55
|
|
|
51
56
|
def _get_client(self) -> boto3.client:
|
|
52
57
|
region_name = os.environ["AWS_DEFAULT_REGION"]
|
|
@@ -114,7 +119,7 @@ class S3:
|
|
|
114
119
|
if compress or s3_location.file_name.endswith(".gz"):
|
|
115
120
|
file_contents = gzip.compress(file_contents)
|
|
116
121
|
content_encoding = ContentEncoding.gzip.value
|
|
117
|
-
obj = self.
|
|
122
|
+
obj = self.resource.Object(s3_location.bucket, s3_location.file_name)
|
|
118
123
|
obj.put(
|
|
119
124
|
Body=file_contents,
|
|
120
125
|
ContentType=content_type,
|
|
@@ -127,7 +132,7 @@ class S3:
|
|
|
127
132
|
|
|
128
133
|
def read_binary_from_s3(self, s3_location: S3Location) -> Optional[bytes]:
|
|
129
134
|
try:
|
|
130
|
-
obj = self.
|
|
135
|
+
obj = self.resource.Object(s3_location.bucket, s3_location.file_name)
|
|
131
136
|
d_bytes = io.BytesIO()
|
|
132
137
|
obj.download_fileobj(d_bytes)
|
|
133
138
|
d_bytes.seek(0)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|