itsdangerous
attrs
Our great sponsors
itsdangerous | attrs | |
---|---|---|
1 | 5 | |
2,500 | 4,378 | |
1.4% | 1.8% | |
7.5 | 9.0 | |
9 days ago | 2 days ago | |
Python | Python | |
BSD 3-clause "New" or "Revised" License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
itsdangerous
-
Flask 2.0 is coming, please help us test
This major release of Flask is accompanied by major releases of Werkzeug, Jinja2, click, and itsdangerous which we'd also welcome and appreciate testing (their pre releases are installed with the Flask pre release).
attrs
-
Python Built-In Functions to Know
I was looking for an example of using locals() to "fill a data class from kwargs" or something similar to that. The example here doesn't use locals().
That aside, I generally wouldn't use the kwargs approach shown in this example either. I'd use [dataclasses](https://docs.python.org/3/library/dataclasses.html ) or [attrs](https://www.attrs.org/) instead.
-
Building a Micro Business: What Services I Pay For
hynek: developer of attrs
-
Soap and REST at Odds (2017)
I continue to be surprised how easy it can be to consume a SOAP API with the right client libraries. Such as https://docs.python-zeep.org/en/master/ for Python. Now that's not to say it will always work, you can design a terrible API with any mechanism, no SOAP or REST client will help you if the other end has desided to succumb to madness and done something like turn their entire API into just "two endpoints" and driven by the payload content you post to the inbound endpoint, and you have to sit there polling the outbound endpoint with the inbound endpoints response ID because to find out what the eventual response is...
But horror story aside, consuming a decent SOAP endpoint with a good client library can be practically magical.
Between attrs (https://www.attrs.org/), cattrs (https://cattrs.readthedocs.io/), and the aforementioned zeep soap client I've got a serialisation pipeline from soap endpoint into an attrs dataclass with type hints and basic type validation down to a snippet so small it fits right here (type hints removed to minimise size).
from zeep import helpers
-
PEP 661 -- Sentinel Values
attrs has at least two.
-
HTTP Calls in Python Without requests or Other External Dependencies
Of course, a custom class will work, or attrs, or whatever container works for you.
What are some alternatives?
blinker - A fast Python in-process signal/event dispatching system.
Tenacity - Retrying library for Python
transitions - A lightweight, object-oriented finite state machine implementation in Python with many extensions
cppimport - Import C++ files directly from Python!
Pychievements - The Python Achievements Framework!
starlette - The little ASGI framework that shines. 🌟
magenta - Magenta: Music and Art Generation with Machine Intelligence
boltons - 🔩 Like builtins, but boltons. 250+ constructs, recipes, and snippets which extend (and rely on nothing but) the Python standard library. Nothing like Michael Bolton.
pluginbase - A simple but flexible plugin system for Python.
import_string