Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
This package is an exceedingly simple wrapper around the builtin
namedtuple
from the collections
package.
It allows you to instantiate via a tuple
or via kwargs
. It
simplifies the case where you know ahead of time what the values of an
Immutable
should be and you just need to instantiate it once.
pip install immutable
namedtuple
The ``namedtuple`` is a Python ``builtin`` that allows you to
instantiate an object as follows:
.. code:: python
from collections import namedtuple
TupleFactory = namedtuple('ATuple', ['using', 'these', 'attrs'])
ATuple = TupleFactory('first', these='second', attrs='third')
ATuple # ATuple(using='first', these='second', attrs='third')
# dot-access attributes
ATuple.using # 'first'
Atuple.these # 'second'
ATuple.attrs # 'third'
# index-access attributes
ATuple[0] # 'first'
ATuple[1] # 'second'
ATuple[2] # 'third'
ATuple[-1] # 'third'
# the class name is as specified in creating the original factory
ATuple.__class__.__name__ # 'ATuple'
``ImmutableFactory``
Replicate namedtuple
functionality
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The ImmutableFactory is just a thin wrapper that allows you to do this in one step:
.. code:: python
from immutable import ImmutableFactory
attributes = (('using', 'first'), ('these', 'second'), ('attrs', 'third'))
# don't worry about the extra kwargs for now :)
ATuple = ImmutableFactory.create(attributes, keys=False, values=False, items=False)
ATuple # Immutable(using='first', these='second', attrs='third')
# dot-access attributes
ATuple.using # 'first'
Atuple.these # 'second'
ATuple.attrs # 'third'
# index-access attributes
ATuple[0] # 'first'
ATuple[1] # 'second'
ATuple[2] # 'third'
ATuple[-1] # 'third'
# the class name is *always* `Immutable` now
ATuple.__class__.__name__ # 'Immutable'
Some extra bells and whistles (don't get too excited) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Most of the time, we don't care about the order. This allows us to instantiate in a much cleaner style:
.. code:: python
from immutable import ImmutableFactory
ATuple = ImmutableFactory.create(using='first', these='second', attrs='third',
keys=False, values=False, items=False)
# note that there's no predictable order here
ATuple # Immutable(these='second', using='first', attrs='third')
# dot-access attributes
ATuple.using # 'first'
Atuple.these # 'second'
ATuple.attrs # 'third'
# doesn't really make sense to index-access attributes now, so don't.
# the class name is *always* `Immutable` now
ATuple.__class__.__name__ # 'Immutable'
Additionally, it's helpful to have dict-like keys
, values
, and
items
. These
Notes
Note if you use a *mutable* as a value for an attribute of an
``Immutable`` object, you'll be able to change it. If this wasn't the
case, the ``ImmutableFactory`` would need to mutate your input data--not
nice.
.. code:: python
from immutable import ImmutableFactory
ATuple = ImmutableFactory.create(mutable=['a', 'list'])
ATuple.mutable # ['a', 'list']
ATuple.mutable.append('can change!')
ATuple.mutable # ['a', 'list', 'can change!']
FAQs
Simple immutable object factory
We found that immutable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.