aws-python-helper 0.34.0__tar.gz → 0.35.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.
Files changed (47) hide show
  1. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/PKG-INFO +1 -2
  2. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper.egg-info/PKG-INFO +1 -2
  3. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper.egg-info/requires.txt +0 -1
  4. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/pyproject.toml +1 -2
  5. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/README.md +0 -0
  6. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/__init__.py +0 -0
  7. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/__init__.py +0 -0
  8. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/auth_middleware.py +0 -0
  9. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/auth_validators.py +0 -0
  10. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/base.py +0 -0
  11. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/dispatcher.py +0 -0
  12. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/exceptions.py +0 -0
  13. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/fetcher.py +0 -0
  14. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/api/handler.py +0 -0
  15. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/context/__init__.py +0 -0
  16. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/context/session.py +0 -0
  17. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/context/state_validator.py +0 -0
  18. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/database/__init__.py +0 -0
  19. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/database/database_proxy.py +0 -0
  20. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/database/external_database_proxy.py +0 -0
  21. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/database/external_mongo_manager.py +0 -0
  22. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/database/mongo_manager.py +0 -0
  23. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/fargate/__init__.py +0 -0
  24. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/fargate/executor.py +0 -0
  25. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/fargate/fetcher.py +0 -0
  26. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/fargate/handler.py +0 -0
  27. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/fargate/task_base.py +0 -0
  28. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/lambda_standalone/__init__.py +0 -0
  29. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/lambda_standalone/base.py +0 -0
  30. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/lambda_standalone/fetcher.py +0 -0
  31. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/lambda_standalone/handler.py +0 -0
  32. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/repository/__init__.py +0 -0
  33. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/repository/base.py +0 -0
  34. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sns/__init__.py +0 -0
  35. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sns/publisher.py +0 -0
  36. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sqs/__init__.py +0 -0
  37. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sqs/consumer_base.py +0 -0
  38. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sqs/fetcher.py +0 -0
  39. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/sqs/handler.py +0 -0
  40. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/utils/__init__.py +0 -0
  41. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/utils/json_encoder.py +0 -0
  42. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/utils/response.py +0 -0
  43. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper/utils/serializer.py +0 -0
  44. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper.egg-info/SOURCES.txt +0 -0
  45. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper.egg-info/dependency_links.txt +0 -0
  46. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/aws_python_helper.egg-info/top_level.txt +0 -0
  47. {aws_python_helper-0.34.0 → aws_python_helper-0.35.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aws-python-helper
3
- Version: 0.34.0
3
+ Version: 0.35.0
4
4
  Summary: AWS Python Helper Framework
5
5
  Author-email: Fabian Claros <neufabiae@gmail.com>
6
6
  License-Expression: MIT
@@ -15,7 +15,6 @@ Requires-Python: >=3.9
15
15
  Description-Content-Type: text/markdown
16
16
  Requires-Dist: motor==3.3.2
17
17
  Requires-Dist: pymongo==4.6.1
18
- Requires-Dist: bcrypt>=4.0.0
19
18
 
20
19
  # AWS Python Framework
21
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aws-python-helper
3
- Version: 0.34.0
3
+ Version: 0.35.0
4
4
  Summary: AWS Python Helper Framework
5
5
  Author-email: Fabian Claros <neufabiae@gmail.com>
6
6
  License-Expression: MIT
@@ -15,7 +15,6 @@ Requires-Python: >=3.9
15
15
  Description-Content-Type: text/markdown
16
16
  Requires-Dist: motor==3.3.2
17
17
  Requires-Dist: pymongo==4.6.1
18
- Requires-Dist: bcrypt>=4.0.0
19
18
 
20
19
  # AWS Python Framework
21
20
 
@@ -1,3 +1,2 @@
1
1
  motor==3.3.2
2
2
  pymongo==4.6.1
3
- bcrypt>=4.0.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aws-python-helper"
7
- version = "0.34.0"
7
+ version = "0.35.0"
8
8
  description = "AWS Python Helper Framework"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -12,7 +12,6 @@ requires-python = ">=3.9"
12
12
  dependencies = [
13
13
  "motor==3.3.2",
14
14
  "pymongo==4.6.1",
15
- "bcrypt>=4.0.0",
16
15
  ]
17
16
 
18
17
  authors = [