boto3-refresh-session 0.0.21__py3-none-any.whl → 0.0.22__py3-none-any.whl
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/session.py +1 -1
- {boto3_refresh_session-0.0.21.dist-info → boto3_refresh_session-0.0.22.dist-info}/METADATA +3 -3
- boto3_refresh_session-0.0.22.dist-info/RECORD +6 -0
- boto3_refresh_session-0.0.21.dist-info/RECORD +0 -6
- {boto3_refresh_session-0.0.21.dist-info → boto3_refresh_session-0.0.22.dist-info}/LICENSE +0 -0
- {boto3_refresh_session-0.0.21.dist-info → boto3_refresh_session-0.0.22.dist-info}/WHEEL +0 -0
boto3_refresh_session/session.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: boto3-refresh-session
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.22
|
4
4
|
Summary: A simple Python package for refreshing boto3 sessions automatically.
|
5
5
|
Home-page: https://github.com/michaelthomasletts/boto3-refresh-session
|
6
6
|
License: MIT
|
@@ -74,10 +74,10 @@ credentials. To learn more about how `boto3` searches for credentials on a
|
|
74
74
|
machine, check [this documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html).
|
75
75
|
|
76
76
|
```python
|
77
|
-
|
77
|
+
import boto3_refresh_session as brs
|
78
78
|
|
79
79
|
|
80
|
-
sess = AutoRefreshableSession(
|
80
|
+
sess = brs.AutoRefreshableSession(
|
81
81
|
region="<your-region>",
|
82
82
|
role_arn="<your-role-arn>",
|
83
83
|
session_name="<your-session-name>",
|
@@ -0,0 +1,6 @@
|
|
1
|
+
boto3_refresh_session/__init__.py,sha256=OMY8el4qROyEvo0vr1Kv8rtFU7g3xnjHuBss54XRTEA,135
|
2
|
+
boto3_refresh_session/session.py,sha256=Pyrhgw0rdLbFJ-7Cv1N_58EpUxx4OAoTM6Jn7ser2Zo,4493
|
3
|
+
boto3_refresh_session-0.0.22.dist-info/LICENSE,sha256=I3ZYTXAjbIly6bm6J-TvFTuuHwTKws4h89QaY5c5HiY,1067
|
4
|
+
boto3_refresh_session-0.0.22.dist-info/METADATA,sha256=-q_1T-SKGD6DpJB1j7kpG8uOjlHhOn1xpXLAxzFaK_g,3990
|
5
|
+
boto3_refresh_session-0.0.22.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
6
|
+
boto3_refresh_session-0.0.22.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
boto3_refresh_session/__init__.py,sha256=OMY8el4qROyEvo0vr1Kv8rtFU7g3xnjHuBss54XRTEA,135
|
2
|
-
boto3_refresh_session/session.py,sha256=3bzw-zs_5TXmJsFJSSV8ENpPK3XrItvCuU2otVKn8X8,4489
|
3
|
-
boto3_refresh_session-0.0.21.dist-info/LICENSE,sha256=I3ZYTXAjbIly6bm6J-TvFTuuHwTKws4h89QaY5c5HiY,1067
|
4
|
-
boto3_refresh_session-0.0.21.dist-info/METADATA,sha256=eNGmHlSIeXhl-tO5vyu33VaHXbXKm9WduO8S8KrhHmQ,4007
|
5
|
-
boto3_refresh_session-0.0.21.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
6
|
-
boto3_refresh_session-0.0.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|