boto3-refresh-session 0.0.9__tar.gz → 0.0.10__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 0.0.9
3
+ Version: 0.0.10
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
@@ -22,7 +22,7 @@ class AutoRefreshableSession:
22
22
  To use this class, you must have `~/.aws/config` or `~/.aws/credentials`
23
23
  on your machine.
24
24
 
25
- Attributes
25
+ Parameters
26
26
  ----------
27
27
  region : str
28
28
  AWS region name.
@@ -37,8 +37,8 @@ class AutoRefreshableSession:
37
37
  client_kwargs : dict, optional
38
38
  Optional keyword arguments for `boto3.Session.client`.
39
39
 
40
- Other Attributes
41
- ----------------
40
+ Attributes
41
+ ----------
42
42
  session
43
43
  Returns a boto3 Session object with credentials which refresh
44
44
  automatically.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "0.0.9"
3
+ version = "0.0.10"
4
4
  description = "A simple Python package for refreshing boto3 sessions automatically."
5
5
  authors = [
6
6
  {name = "Mike Letts",email = "michaelthomasletts@gmail.com"}