boto3-refresh-session 1.3.17__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.17 → boto3_refresh_session-1.3.19}/PKG-INFO +6 -6
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/README.md +5 -5
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/__init__.py +1 -1
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/pyproject.toml +1 -1
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/LICENSE +0 -0
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/NOTICE +0 -0
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/custom.py +0 -0
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/ecs.py +0 -0
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/exceptions.py +0 -0
- {boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/session.py +0 -0
- {boto3_refresh_session-1.3.17 → 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,6 +114,8 @@ pip install boto3-refresh-session
|
|
118
114
|
|
119
115
|
## Usage (STS)
|
120
116
|
|
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.
|
118
|
+
|
121
119
|
```python
|
122
120
|
import boto3_refresh_session as brs
|
123
121
|
|
@@ -152,6 +150,8 @@ session = brs.RefreshableSession(
|
|
152
150
|
|
153
151
|
## Usage (ECS)
|
154
152
|
|
153
|
+
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
|
154
|
+
|
155
155
|
```python
|
156
156
|
session = RefreshableSession(
|
157
157
|
method="ecs",
|
@@ -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,6 +90,8 @@ pip install boto3-refresh-session
|
|
94
90
|
|
95
91
|
## Usage (STS)
|
96
92
|
|
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.
|
94
|
+
|
97
95
|
```python
|
98
96
|
import boto3_refresh_session as brs
|
99
97
|
|
@@ -128,6 +126,8 @@ session = brs.RefreshableSession(
|
|
128
126
|
|
129
127
|
## Usage (ECS)
|
130
128
|
|
129
|
+
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
|
130
|
+
|
131
131
|
```python
|
132
132
|
session = RefreshableSession(
|
133
133
|
method="ecs",
|
@@ -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.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/custom.py
RENAMED
File without changes
|
File without changes
|
{boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/exceptions.py
RENAMED
File without changes
|
{boto3_refresh_session-1.3.17 → boto3_refresh_session-1.3.19}/boto3_refresh_session/session.py
RENAMED
File without changes
|
File without changes
|