my-aws-helpers 2.4.0__tar.gz → 2.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.

Files changed (20) hide show
  1. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/PKG-INFO +1 -1
  2. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/event.py +1 -1
  3. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/s3.py +1 -1
  4. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/PKG-INFO +1 -1
  5. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/setup.py +1 -1
  6. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/README.md +0 -0
  7. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/api.py +0 -0
  8. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/auth.py +0 -0
  9. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/cognito.py +0 -0
  10. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/dynamo.py +0 -0
  11. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/errors.py +0 -0
  12. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/logging.py +0 -0
  13. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers/sfn.py +0 -0
  14. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/SOURCES.txt +0 -0
  15. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/dependency_links.txt +0 -0
  16. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/requires.txt +0 -0
  17. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/top_level.txt +0 -0
  18. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/my_aws_helpers.egg-info/zip-safe +0 -0
  19. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/setup.cfg +0 -0
  20. {my_aws_helpers-2.4.0 → my_aws_helpers-2.5.0}/tests/test_event.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: my_aws_helpers
3
- Version: 2.4.0
3
+ Version: 2.5.0
4
4
  Summary: AWS Helpers
5
5
  Home-page: https://github.com/JarrodMccarthy/aws_helpers.git
6
6
  Author: Jarrod McCarthy
@@ -89,7 +89,7 @@ class EventQueries(BaseQueries):
89
89
  results = self.client.table.query(
90
90
  KeyConditionExpression=Key("pk").eq(pk) & Key("sk").eq(sk)
91
91
  )
92
- if len(results["items"]) < 1:
92
+ if len(results["Items"]) < 1:
93
93
  return None
94
94
  if len(results["Items"]) > 1:
95
95
  raise Exception(f"Should only be 1 event with id {id}")
@@ -128,7 +128,7 @@ class S3:
128
128
  return s3_location
129
129
  except Exception as e:
130
130
  logger.exception(e)
131
- return None
131
+ return None
132
132
 
133
133
  def read_binary_from_s3(self, s3_location: S3Location) -> Optional[bytes]:
134
134
  try:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: my-aws-helpers
3
- Version: 2.4.0
3
+ Version: 2.5.0
4
4
  Summary: AWS Helpers
5
5
  Home-page: https://github.com/JarrodMccarthy/aws_helpers.git
6
6
  Author: Jarrod McCarthy
@@ -3,7 +3,7 @@ from setuptools import find_namespace_packages, setup
3
3
 
4
4
  base_path = os.path.abspath(os.path.dirname(__file__))
5
5
 
6
- version = "2.4.0"
6
+ version = "2.5.0"
7
7
 
8
8
  setup(
9
9
  name="my_aws_helpers",
File without changes
File without changes