boto3-refresh-session 0.0.21__tar.gz → 0.0.22__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/PKG-INFO +3 -3
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/README.md +2 -2
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/boto3_refresh_session/session.py +1 -1
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/pyproject.toml +1 -1
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/LICENSE +0 -0
- {boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/boto3_refresh_session/__init__.py +0 -0
@@ -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>",
|
@@ -49,10 +49,10 @@ credentials. To learn more about how `boto3` searches for credentials on a
|
|
49
49
|
machine, check [this documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html).
|
50
50
|
|
51
51
|
```python
|
52
|
-
|
52
|
+
import boto3_refresh_session as brs
|
53
53
|
|
54
54
|
|
55
|
-
sess = AutoRefreshableSession(
|
55
|
+
sess = brs.AutoRefreshableSession(
|
56
56
|
region="<your-region>",
|
57
57
|
role_arn="<your-role-arn>",
|
58
58
|
session_name="<your-session-name>",
|
File without changes
|
{boto3_refresh_session-0.0.21 → boto3_refresh_session-0.0.22}/boto3_refresh_session/__init__.py
RENAMED
File without changes
|