pluginbase
attrs
Our great sponsors
pluginbase | attrs | |
---|---|---|
0 | 5 | |
1,010 | 4,226 | |
- | 1.6% | |
0.0 | 9.2 | |
about 1 year ago | 8 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.
pluginbase
We haven't tracked posts mentioning pluginbase yet.
Tracking mentions began in Dec 2020.
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?
Tryton - Mirror of Tryton Client
transitions - A lightweight, object-oriented finite state machine implementation in Python with many extensions
itsdangerous - Safely pass trusted data to untrusted environments and back.
Tenacity - Retrying library for Python
Pychievements - The Python Achievements Framework!
magenta - Magenta: Music and Art Generation with Machine Intelligence
blinker - A fast Python in-process signal/event dispatching system.
import_string
cppimport - Import C++ files directly from Python!