boto3-refresh-session 1.3.18__tar.gz → 1.3.19__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.
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/PKG-INFO +3 -7
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/README.md +2 -6
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/__init__.py +1 -1
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/pyproject.toml +1 -1
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/LICENSE +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/NOTICE +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/custom.py +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/ecs.py +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/exceptions.py +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/session.py +0 -0
- {boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/sts.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: boto3-refresh-session
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.19
|
4
4
|
Summary: A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically.
|
5
5
|
License: MIT
|
6
6
|
Keywords: boto3,botocore,aws,sts,ecs,credentials,token,refresh
|
@@ -57,13 +57,9 @@ Description-Content-Type: text/markdown
|
|
57
57
|
</a>
|
58
58
|
|
59
59
|
<a href="https://pypistats.org/packages/boto3-refresh-session">
|
60
|
-
<img src="https://img.shields.io/badge/downloads-
|
60
|
+
<img src="https://img.shields.io/badge/downloads-73.4K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
|
61
61
|
</a>
|
62
62
|
|
63
|
-
<a href="https://pypistats.org/packages/boto3-refresh-session">
|
64
|
-
<img src="https://img.shields.io/badge/downloads-18.1K-red?logo=python&color=%23FF0000&label=Downloads%20%28without%20mirrors%29" alt="Downloads without mirrors"/>
|
65
|
-
</a>
|
66
|
-
|
67
63
|
<a href="https://michaelthomasletts.github.io/boto3-refresh-session/index.html">
|
68
64
|
<img src="https://img.shields.io/badge/Official%20Documentation-📘-FF0000?style=flat&labelColor=555&logo=readthedocs" alt="Documentation Badge"/>
|
69
65
|
</a>
|
@@ -118,7 +114,7 @@ pip install boto3-refresh-session
|
|
118
114
|
|
119
115
|
## Usage (STS)
|
120
116
|
|
121
|
-
Most users use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically.
|
117
|
+
Most users use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically.
|
122
118
|
|
123
119
|
```python
|
124
120
|
import boto3_refresh_session as brs
|
@@ -33,13 +33,9 @@
|
|
33
33
|
</a>
|
34
34
|
|
35
35
|
<a href="https://pypistats.org/packages/boto3-refresh-session">
|
36
|
-
<img src="https://img.shields.io/badge/downloads-
|
36
|
+
<img src="https://img.shields.io/badge/downloads-73.4K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
|
37
37
|
</a>
|
38
38
|
|
39
|
-
<a href="https://pypistats.org/packages/boto3-refresh-session">
|
40
|
-
<img src="https://img.shields.io/badge/downloads-18.1K-red?logo=python&color=%23FF0000&label=Downloads%20%28without%20mirrors%29" alt="Downloads without mirrors"/>
|
41
|
-
</a>
|
42
|
-
|
43
39
|
<a href="https://michaelthomasletts.github.io/boto3-refresh-session/index.html">
|
44
40
|
<img src="https://img.shields.io/badge/Official%20Documentation-📘-FF0000?style=flat&labelColor=555&logo=readthedocs" alt="Documentation Badge"/>
|
45
41
|
</a>
|
@@ -94,7 +90,7 @@ pip install boto3-refresh-session
|
|
94
90
|
|
95
91
|
## Usage (STS)
|
96
92
|
|
97
|
-
Most users use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically.
|
93
|
+
Most users use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically.
|
98
94
|
|
99
95
|
```python
|
100
96
|
import boto3_refresh_session as brs
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "boto3-refresh-session"
|
3
|
-
version = "1.3.
|
3
|
+
version = "1.3.19"
|
4
4
|
description = "A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically."
|
5
5
|
authors = [
|
6
6
|
{name = "Mike Letts",email = "lettsmt@gmail.com"}
|
File without changes
|
File without changes
|
{boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/custom.py
RENAMED
File without changes
|
File without changes
|
{boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/exceptions.py
RENAMED
File without changes
|
{boto3_refresh_session-1.3.18 → boto3_refresh_session-1.3.19}/boto3_refresh_session/session.py
RENAMED
File without changes
|
File without changes
|