![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.