boto3-refresh-session 1.0.30__tar.gz → 1.0.32__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.0.30
3
+ Version: 1.0.32
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
@@ -50,12 +50,26 @@ Description-Content-Type: text/markdown
50
50
  - [Contributing](https://michaelthomasletts.github.io/boto3-refresh-session/contributing.html)
51
51
  - [Authorization](https://michaelthomasletts.github.io/boto3-refresh-session/authorization.html)
52
52
 
53
+ ## Adoption
54
+
55
+ <p align="center">
56
+ <img src="https://raw.githubusercontent.com/michaelthomasletts/boto3-refresh-session/refs/heads/main/doc/downloads.png" />
57
+ </p>
58
+
53
59
  ## Testimonials
54
60
 
55
61
  From a Cyber Security Engineer at a FAANG company:
56
62
 
57
63
  > _Most of my work is on tooling related to AWS security, so I'm pretty choosy about boto3 credentials-adjacent code. I often opt to just write this sort of thing myself so I at least know that I can reason about it. But I found boto3-refresh-session to be very clean and intuitive . . . we're using the RefreshableSession class as part of a client cache construct . . . we're using AWS Lambda to perform lots of operations across several regions in hundreds of accounts, over and over again, all day every day. And it turns out that there's a surprising amount of overhead to creating boto3 clients (mostly deserializing service definition json), so we can run MUCH more efficiently if we keep a cache of clients, all equipped with automatically refreshing sessions._
58
64
 
65
+ ## Features
66
+
67
+ - Auto-refreshing credentials for long-lived `boto3` sessions
68
+ - Drop-in replacement for `boto3.session.Session`
69
+ - Supports `assume_role`, custom STS clients, and profile/region configuration, as well as all other parameters supported by `boto3.session.Session`
70
+ - Tested, documented, and published to PyPI
71
+ - Used in production at major tech companies
72
+
59
73
  ## Installation
60
74
 
61
75
  ```bash
@@ -123,3 +137,7 @@ on my employer's open source policy, I may simply import this package instead of
123
137
  reproducing the code herein for the Nth time.
124
138
 
125
139
  If any of that sounds relatable, then `boto3-refresh-session` should help you.
140
+
141
+ ---
142
+
143
+ 📄 Licensed under the MIT License.
@@ -27,12 +27,26 @@
27
27
  - [Contributing](https://michaelthomasletts.github.io/boto3-refresh-session/contributing.html)
28
28
  - [Authorization](https://michaelthomasletts.github.io/boto3-refresh-session/authorization.html)
29
29
 
30
+ ## Adoption
31
+
32
+ <p align="center">
33
+ <img src="https://raw.githubusercontent.com/michaelthomasletts/boto3-refresh-session/refs/heads/main/doc/downloads.png" />
34
+ </p>
35
+
30
36
  ## Testimonials
31
37
 
32
38
  From a Cyber Security Engineer at a FAANG company:
33
39
 
34
40
  > _Most of my work is on tooling related to AWS security, so I'm pretty choosy about boto3 credentials-adjacent code. I often opt to just write this sort of thing myself so I at least know that I can reason about it. But I found boto3-refresh-session to be very clean and intuitive . . . we're using the RefreshableSession class as part of a client cache construct . . . we're using AWS Lambda to perform lots of operations across several regions in hundreds of accounts, over and over again, all day every day. And it turns out that there's a surprising amount of overhead to creating boto3 clients (mostly deserializing service definition json), so we can run MUCH more efficiently if we keep a cache of clients, all equipped with automatically refreshing sessions._
35
41
 
42
+ ## Features
43
+
44
+ - Auto-refreshing credentials for long-lived `boto3` sessions
45
+ - Drop-in replacement for `boto3.session.Session`
46
+ - Supports `assume_role`, custom STS clients, and profile/region configuration, as well as all other parameters supported by `boto3.session.Session`
47
+ - Tested, documented, and published to PyPI
48
+ - Used in production at major tech companies
49
+
36
50
  ## Installation
37
51
 
38
52
  ```bash
@@ -99,4 +113,8 @@ automatic documentation, and quality checks; the idea being that, henceforth, de
99
113
  on my employer's open source policy, I may simply import this package instead of
100
114
  reproducing the code herein for the Nth time.
101
115
 
102
- If any of that sounds relatable, then `boto3-refresh-session` should help you.
116
+ If any of that sounds relatable, then `boto3-refresh-session` should help you.
117
+
118
+ ---
119
+
120
+ 📄 Licensed under the MIT License.
@@ -4,5 +4,5 @@ from . import session
4
4
  from .session import RefreshableSession
5
5
 
6
6
  __all__.extend(session.__all__)
7
- __version__ = "1.0.30"
7
+ __version__ = "1.0.32"
8
8
  __author__ = "Mike Letts"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "1.0.30"
3
+ version = "1.0.32"
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"}