Tagged Questions
The namedtuple tag has no wiki summary.
68
votes
4answers
6k views
What are “named tuples” in Python?
Reading the changes in Python 3.1, I found something... unexpected:
The sys.version_info tuple is now a named tuple:
I never heard about named tuples before, and I thought elements could either ...
9
votes
3answers
125 views
What is the advantage in using `exec` over `type()` when creating classes at runtime?
I want to dynamically create classes at runtime in python.
For example, I want to replicate the code below:
>>> class RefObj(object):
... def __init__(self, ParentClassName):
... ...
8
votes
3answers
474 views
Adding docstrings to namedtuples in Python?
Is it possible to add a documentation string to a namedtuple in an easy manner?
I tried
from collections import namedtuple
Point = namedtuple("Point", ["x", "y"])
"""
A point in 2D space
"""
# Yet ...
7
votes
2answers
81 views
What is the pythonic way to read a CSV file header?
What is the best way to take a data file that contains a header row and read this row into a named tuple so that the data rows can be accessed by header name?
I was attempting something like this:
...
7
votes
2answers
492 views
Serializing a Python namedtuple to json
What is the recommended way of serializing a namedtuple to json with the field names retained?
Serializing a namedtuple to json results in only the values being serialized and the field names being ...
7
votes
3answers
184 views
Structure accessible by attribute name or index options
I am very new to Python, and trying to figure out how to create an object that has values that are accessible either by attribute name, or by index. For example, the way os.stat() returns a ...
6
votes
4answers
201 views
Equivalent of named tuple in NumPy?
Is it possible to create a NumPy object that behaves very much like a collections.namedtuple, in the sense that elements can be accessed like so:
data[1] = 42
data['start date'] = '2011-09-20' # ...
6
votes
2answers
265 views
Modifying a namedtuple's constructor arguments via subclassing?
I want to create a namedtuple which represents the individual flags in a short bitfield. I'm trying to subclass it so that I can unpack the bitfield before the tuple is created. However, my current ...
4
votes
2answers
55 views
Trouble with python list of named tuples
Here is some simplified code that I don't understand why it does not work.
from collections import namedtuple
MyStruct = namedtuple('MyStruct', 'ThreadInstance ThreadName Mnemonic IpAddr IpGW Status ...
4
votes
1answer
125 views
Is it possible to use a namedtuple with SQLalchemy?
I have been trying to get a namedtuple to work with SQLalchemy, but to no avail.. Web search hasn't been very illuminating and I'm new with Python and SQLalchemy so I'm not really sure if I'm chasing ...
4
votes
3answers
609 views
Why Python does not support record type i.e. mutable namedtuple
Why does not Python support a record type natively? It's a matter of having a mutable version of namedtuple.
I could use namedtuple._replace. But I need to have these records in a collection and since ...
4
votes
2answers
382 views
Python: how to check if an object is an instance of a namedtuple?
How do I check if an object is an instance of a Named tuple?
3
votes
2answers
91 views
nesting with namedtuple
I'm having trouble getting my data in the form that I'd like in python.
Basically I have a program that reads in binary data and provides functions for plotting and analysis on said data.
My data ...
3
votes
3answers
520 views
extend Python namedtuple with many @properties?
How can namedtuples be extended or subclassed with many additional @properties ?
For a few, one can just write the text below; but there are many,
so I'm looking for a generator or property factory.
...
3
votes
4answers
273 views
Python: namedtuple._replace() doesn't work as descrbed in the documentation
I was having trouble implementing 'namedtuple._replace()', so I copied the code right off of the documentation:
Point = namedtuple('Point', 'x,y')
p = Point(x=11, y=22)
p._replace(x=33)
print p
...
3
votes
2answers
392 views
Python: Using namedtuple._replace with a variable as a fieldname
Can I reference a namedtuple fieldame using a variable?
from collections import namedtuple
import random
Prize = namedtuple("Prize", ["left", "right"])
this_prize = Prize("FirstPrize", ...
2
votes
1answer
47 views
How to implement python's namedtuple in javascript
How would I go about implementing python's namedtuple in javascript? Ideally I would also want a function I could "map" over a sequence of sequences to turn it into a sequence of namedtuple-like ...
2
votes
2answers
66 views
Does using an '_' for typename in a namedtuple do anything special?
I'm looking at code that does uses an _ for typename in a namedtuple. I was wondering what the purpose of this is.
example = namedtuple('_', ['NameOfClass1', 'NameOfClass2'])
Why not just use ...
2
votes
4answers
168 views
Python unpack 2-dimensional list of named tuples
I have a 2-dimensional list of named tuples (let's say that each tuple has N values), and I want to unpack them into N different 2-dimensional lists where each unpacked 2-D list is composed entirely ...
2
votes
2answers
109 views
Getting name of value from namedtuple
I have a module with collection:
import collections
named_tuple_sex = collections.namedtuple(
'FlightsResultsSorter',
['TotalPriceASC',
...
2
votes
3answers
341 views
In Python, how do I call the super class when it's a one-off namedtuple?
So, I have a large number of message Payload classes for a serial API, each of which has a number of immutable fields, a parse method, and some methods which are shared. The way I'm structuring this ...
2
votes
1answer
205 views
What is a nicer alternative to a namedtuples _replace?
Take this code:
>>> import urlparse
>>> parts = urlparse.urlparse('http://docs.python.org/library/')
>>> parts = parts._replace(path='/3.0'+parts.path)
parts._replace ...
1
vote
3answers
61 views
Printing named tuples
In Python 2.7.1 I can create a named tuple:
from collections import namedtuple
Test = namedtuple('Test', ['this', 'that'])
I can populate it:
my_test = Test(this=1, that=2)
And I can print it ...