my-aws-helpers 4.4.1__tar.gz → 4.5.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-4.4.1 → my_aws_helpers-4.5.0}/PKG-INFO +1 -1
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/s3.py +6 -7
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/PKG-INFO +1 -1
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/setup.py +1 -1
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/MANIFEST.in +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/README.md +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/api.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/auth.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/bedrock.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/cognito.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/dynamo.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/errors.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/event.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/logging.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/__init__.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/markdown_system_prompt.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/transactions_headers_prompt.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/transactions_headers_prompt_v2.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/transactions_prompt.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/sfn.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/SOURCES.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/dependency_links.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/requires.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/top_level.txt +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers.egg-info/zip-safe +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/setup.cfg +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/tests/test_cognito.py +0 -0
- {my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/tests/test_event.py +0 -0
|
@@ -34,13 +34,12 @@ class S3Serialiser:
|
|
|
34
34
|
return obj
|
|
35
35
|
|
|
36
36
|
@staticmethod
|
|
37
|
-
def object_serialiser(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
return S3Serialiser._serialise(obj=obj_dict)
|
|
37
|
+
def object_serialiser(obj: Dict):
|
|
38
|
+
if isinstance(obj, list):
|
|
39
|
+
return [S3Serialiser.object_serialiser(obj=obj) for obj in obj]
|
|
40
|
+
if isinstance(obj, dict):
|
|
41
|
+
return {k: S3Serialiser.object_serialiser(v) for k, v in obj.items()}
|
|
42
|
+
return S3Serialiser._serialise(obj=obj)
|
|
44
43
|
|
|
45
44
|
class S3Location:
|
|
46
45
|
bucket: str
|
|
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
|
{my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/markdown_system_prompt.txt
RENAMED
|
File without changes
|
{my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/transactions_headers_prompt.txt
RENAMED
|
File without changes
|
|
File without changes
|
{my_aws_helpers-4.4.1 → my_aws_helpers-4.5.0}/my_aws_helpers/prompts/transactions_prompt.txt
RENAMED
|
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
|