New posts in namedtuple

How to cast tuple into namedtuple?

Can't set attribute for subclasses of namedtuple

How to check if an object is an instance of a namedtuple?

Lightweight classes with specified fields in Python

Why does Python not support record type? (i.e. mutable namedtuple)

namedtuple._replace() doesn't work as described in the documentation

What does *tuple and **dict mean in Python? [duplicate]

How to pickle a namedtuple instance correctly

Pythonic way to sorting list of namedtuples by field name

Pythonic way to convert a dictionary into namedtuple or another hashable dict-like?

How to access a field of a namedtuple using a variable for the field name?

Adding docstrings to namedtuples?

Serializing a Python namedtuple to json

Data Classes vs typing.NamedTuple primary use cases

Existence of mutable named tuple in Python?

How do I avoid the "self.x = x; self.y = y; self.z = z" pattern in __init__?

Type hints in namedtuple

Convert a namedtuple into a dictionary

NamedTuple with default values

Named tuple and default values for optional keyword arguments