boto3-refresh-session 1.3.12__tar.gz → 1.3.14__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 1.3.12
3
+ Version: 1.3.14
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
@@ -56,11 +56,11 @@ Description-Content-Type: text/markdown
56
56
  <img src="https://img.shields.io/github/stars/michaelthomasletts/boto3-refresh-session?style=flat&logo=github&labelColor=555&color=FF0000&label=Stars" alt="Stars"/>
57
57
  </a>
58
58
 
59
- <a href="https://pepy.tech/project/boto3-refresh-session">
59
+ <a href="https://pypistats.org/packages/boto3-refresh-session">
60
60
  <img src="https://img.shields.io/badge/downloads-67.6K-red?logo=python&color=%23FF0000&label=Downloads%20%28with%20mirrors%29" alt="Downloads with mirrors"/>
61
61
  </a>
62
62
 
63
- <a href="https://pepy.tech/project/boto3-refresh-session">
63
+ <a href="https://pypistats.org/packages/boto3-refresh-session">
64
64
  <img src="https://img.shields.io/badge/downloads-17.3K-red?logo=python&color=%23FF0000&label=Downloads%20%28without%20mirrors%29" alt="Downloads without mirrors"/>
65
65
  </a>
66
66
 
@@ -78,7 +78,12 @@ Description-Content-Type: text/markdown
78
78
 
79
79
  <a href="https://medium.com/@lettsmt/you-shouldnt-have-to-think-about-refreshing-aws-credentials-214f7cbbd83b">
80
80
  <img src="https://img.shields.io/badge/Medium%20Article-📘-FF0000?style=flat&labelColor=555&logo=readthedocs" alt="Medium Article"/>
81
- </a>
81
+ </a>
82
+
83
+ <a href="https://github.com/sponsors/michaelthomasletts">
84
+ <img src="https://img.shields.io/badge/Sponsor%20this%20Project-💙-FF0000?style=flat&labelColor=555&logo=githubsponsors" alt="Sponsorship"/>
85
+ </a>
86
+
82
87
 
83
88
  </div>
84
89
 
@@ -90,7 +95,7 @@ Description-Content-Type: text/markdown
90
95
  - ECS
91
96
  - Supports custom authentication methods for complicated authentication flows
92
97
  - Natively supports all parameters supported by `boto3.session.Session`
93
- - Tested, documented, and published to PyPI
98
+ - [Tested](https://github.com/michaelthomasletts/boto3-refresh-session/tree/main/tests), [documented](https://michaelthomasletts.github.io/boto3-refresh-session/index.html), and [published to PyPI](https://pypi.org/project/boto3-refresh-session/)
94
99
  - Future releases will include support for EC2, IoT, SSO, and OIDC
95
100
 
96
101
  ## Recognition, Adoption, and Testimonials
@@ -32,11 +32,11 @@
32
32
  <img src="https://img.shields.io/github/stars/michaelthomasletts/boto3-refresh-session?style=flat&logo=github&labelColor=555&color=FF0000&label=Stars" alt="Stars"/>
33
33
  </a>
34
34
 
35
- <a href="https://pepy.tech/project/boto3-refresh-session">
35
+ <a href="https://pypistats.org/packages/boto3-refresh-session">
36
36
  <img src="https://img.shields.io/badge/downloads-67.6K-red?logo=python&color=%23FF0000&label=Downloads%20%28with%20mirrors%29" alt="Downloads with mirrors"/>
37
37
  </a>
38
38
 
39
- <a href="https://pepy.tech/project/boto3-refresh-session">
39
+ <a href="https://pypistats.org/packages/boto3-refresh-session">
40
40
  <img src="https://img.shields.io/badge/downloads-17.3K-red?logo=python&color=%23FF0000&label=Downloads%20%28without%20mirrors%29" alt="Downloads without mirrors"/>
41
41
  </a>
42
42
 
@@ -54,7 +54,12 @@
54
54
 
55
55
  <a href="https://medium.com/@lettsmt/you-shouldnt-have-to-think-about-refreshing-aws-credentials-214f7cbbd83b">
56
56
  <img src="https://img.shields.io/badge/Medium%20Article-📘-FF0000?style=flat&labelColor=555&logo=readthedocs" alt="Medium Article"/>
57
- </a>
57
+ </a>
58
+
59
+ <a href="https://github.com/sponsors/michaelthomasletts">
60
+ <img src="https://img.shields.io/badge/Sponsor%20this%20Project-💙-FF0000?style=flat&labelColor=555&logo=githubsponsors" alt="Sponsorship"/>
61
+ </a>
62
+
58
63
 
59
64
  </div>
60
65
 
@@ -66,7 +71,7 @@
66
71
  - ECS
67
72
  - Supports custom authentication methods for complicated authentication flows
68
73
  - Natively supports all parameters supported by `boto3.session.Session`
69
- - Tested, documented, and published to PyPI
74
+ - [Tested](https://github.com/michaelthomasletts/boto3-refresh-session/tree/main/tests), [documented](https://michaelthomasletts.github.io/boto3-refresh-session/index.html), and [published to PyPI](https://pypi.org/project/boto3-refresh-session/)
70
75
  - Future releases will include support for EC2, IoT, SSO, and OIDC
71
76
 
72
77
  ## Recognition, Adoption, and Testimonials
@@ -4,5 +4,9 @@ from .session import RefreshableSession
4
4
  from .sts import STSRefreshableSession
5
5
 
6
6
  __all__ = ["RefreshableSession"]
7
- __version__ = "1.3.12"
7
+ __version__ = "1.3.14"
8
+ __title__ = "boto3-refresh-session"
8
9
  __author__ = "Mike Letts"
10
+ __maintainer__ = "Mike Letts"
11
+ __license__ = "MIT"
12
+ __email__ = "lettsmt@gmail.com"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "1.3.12"
3
+ version = "1.3.14"
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"}