boto3-refresh-session 0.1.26__tar.gz → 0.1.27__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 0.1.26
3
+ Version: 0.1.27
4
4
  Summary: A simple Python package for refreshing AWS temporary credentials in boto3 automatically.
5
5
  License: MIT
6
6
  Keywords: boto3,botocore,aws
@@ -48,7 +48,7 @@ expire.
48
48
 
49
49
  Usually, engineers deal with that problem one of two different ways:
50
50
 
51
- - `try except` blocks that catch `ClientError` exceptions
51
+ - A `try except` block that catches `botocore.exceptions.ClientError` exceptions
52
52
  - A similar approach as that used in this project -- that is, using methods available
53
53
  within `botocore` for refreshing temporary credentials automatically.
54
54
 
@@ -24,7 +24,7 @@ expire.
24
24
 
25
25
  Usually, engineers deal with that problem one of two different ways:
26
26
 
27
- - `try except` blocks that catch `ClientError` exceptions
27
+ - A `try except` block that catches `botocore.exceptions.ClientError` exceptions
28
28
  - A similar approach as that used in this project -- that is, using methods available
29
29
  within `botocore` for refreshing temporary credentials automatically.
30
30
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "0.1.26"
3
+ version = "0.1.27"
4
4
  description = "A simple Python package for refreshing AWS temporary credentials in boto3 automatically."
5
5
  authors = [
6
6
  {name = "Mike Letts",email = "lettsmt@gmail.com"}