active questions tagged python-datamodel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:53:07Zhttp://stackoverflow.com/feeds/tag/python-datamodelhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python48What is a metaclass in Python?e-satis2008-09-19T06:10:46Z2009-11-23T11:09:44Z
<p>I´ve mastered almost all the Python concepts (well, let´s say there are just OO concepts :-)) but this one is tricky.</p>
<p>I know it has something to do with introspection but it´s still unclear to me.</p>
<p>So what are metaclasses? What do you use them for? </p>
<p>Concrete examples, including snippets, much appreciated!</p>
http://stackoverflow.com/questions/1628137/python-attribute-lookup-without-any-descriptor-magic0python attribute lookup without any descriptor magic?Matt Anderson2009-10-27T00:38:26Z2009-10-28T17:44:22Z
<p>I've started to use the python descriptor protocol more extensively in the code I've been writing. Typically, the default python lookup magic is what I want to happen, but sometimes I'm finding I want to get the descriptor object itself instead the results of its <code>__get__</code> method. Wanting to know the type of the descriptor, or access state stored in the descriptor, or somesuch thing.</p>
<p>I wrote the code below to walk the namespaces in what I believe is the correct ordering, and return the attribute raw regardless of whether it is a descriptor or not. I'm surprised though that I can't find a built-in function or something in the standard library to do this -- I figure it has to be there and I just haven't noticed it or googled for the right search term.</p>
<p>Is there functionality somewhere in the python distribution that already does this (or something similar)?</p>
<p>Thanks!</p>
<pre><code>from inspect import isdatadescriptor
def namespaces(obj):
obj_dict = None
if hasattr(obj, '__dict__'):
obj_dict = object.__getattribute__(obj, '__dict__')
obj_class = type(obj)
return obj_dict, [t.__dict__ for t in obj_class.__mro__]
def getattr_raw(obj, name):
# get an attribute in the same resolution order one would normally,
# but do not call __get__ on the attribute even if it has one
obj_dict, class_dicts = namespaces(obj)
# look for a data descriptor in class hierarchy; it takes priority over
# the obj's dict if it exists
for d in class_dicts:
if name in d and isdatadescriptor(d[name]):
return d[name]
# look for the attribute in the object's dictionary
if obj_dict and name in obj_dict:
return obj_dict[name]
# look for the attribute anywhere in the class hierarchy
for d in class_dicts:
if name in d:
return d[name]
raise AttributeError
</code></pre>
<p>Edit Wed, Oct 28, 2009.</p>
<p>Denis's answer gave me a convention to use in my descriptor classes to get the descriptor objects themselves. But, I had an entire class hierarchy of descriptor classes, and I didn't want to begin <em>every</em> <code>__get__</code> function with a boilerplate</p>
<pre><code>def __get__(self, instance, instance_type):
if instance is None:
return self
...
</code></pre>
<p>To avoid this, I made the root of the descriptor class tree inherit from the following:</p>
<pre><code>def decorate_get(original_get):
def decorated_get(self, instance, instance_type):
if instance is None:
return self
return original_get(self, instance, instance_type)
return decorated_get
class InstanceOnlyDescriptor(object):
"""All __get__ functions are automatically wrapped with a decorator which
causes them to only be applied to instances. If __get__ is called on a
class, the decorator returns the descriptor itself, and the decorated
__get__ is not called.
"""
class __metaclass__(type):
def __new__(cls, name, bases, attrs):
if '__get__' in attrs:
attrs['__get__'] = decorate_get(attrs['__get__'])
return type.__new__(cls, name, bases, attrs)
</code></pre>
http://stackoverflow.com/questions/1483085/decypher-with-me-that-obfuscated-multiplierfactory2decypher with me that obfuscated MultiplierFactoryNicDumZ2009-09-27T08:11:24Z2009-09-27T08:49:53Z
<p>This week on comp.lang.python, an "interesting" piece of code was <a href="http://groups.google.com/group/comp.lang.python/msg/fbd486398fcff81b" rel="nofollow">posted</a> by Steven D'Aprano as a joke answer to an homework question. Here it is:</p>
<pre><code>class MultiplierFactory(object):
def __init__(self, factor=1):
self.__factor = factor
@property
def factor(self):
return getattr(self, '_%s__factor' % self.__class__.__name__)
def __call__(self, factor=None):
if not factor is not None is True:
factor = self.factor
class Multiplier(object):
def __init__(self, factor=None):
self.__factor = factor
@property
def factor(self):
return getattr(self,
'_%s__factor' % self.__class__.__name__)
def __call__(self, n):
return self.factor*n
Multiplier.__init__.im_func.func_defaults = (factor,)
return Multiplier(factor)
twice = MultiplierFactory(2)()
</code></pre>
<p>We know that <code>twice</code> is an equivalent to the answer:</p>
<pre><code>def twice(x):
return 2*x
</code></pre>
<p>From the names <code>Multiplier</code> and <code>MultiplierFactory</code> we get an idea of what's the code doing, but we're not sure of the exact internals. Let's simplify it first.</p>
<h2>Logic</h2>
<pre><code>if not factor is not None is True:
factor = self.factor
</code></pre>
<p><code>not factor is not None is True</code> is equivalent to <code>not factor is not None</code>, which is also <code>factor is None</code>. Result:</p>
<pre><code>if factor is None:
factor = self.factor
</code></pre>
<p>Until now, that was easy :)</p>
<h2>Attribute access</h2>
<p>Another interesting point is the curious <code>factor</code> accessor.</p>
<pre><code>def factor(self):
return getattr(self, '_%s__factor' % self.__class__.__name__)
</code></pre>
<p>During initialization of <code>MultiplierFactory</code>, <code>self.__factor</code> is set. But later on, the code accesses <code>self.factor</code>.</p>
<p>It then seems that:</p>
<pre><code>getattr(self, '_%s__factor' % self.__class__.__name__)
</code></pre>
<p>Is doing exactly "<code>self.__factor</code>". </p>
<p><strong><em>Can we always access attributes in this fashion?</em></strong></p>
<pre><code>def mygetattr(self, attr):
return getattr(self, '_%s%s' % (self.__class__.__name__, attr))
</code></pre>
<h2>Dynamically changing function signatures</h2>
<p>Anyway, at this point, here is the simplified code:</p>
<pre><code>class MultiplierFactory(object):
def __init__(self, factor=1):
self.factor = factor
def __call__(self, factor=None):
if factor is None:
factor = self.factor
class Multiplier(object):
def __init__(self, factor=None):
self.factor = factor
def __call__(self, n):
return self.factor*n
Multiplier.__init__.im_func.func_defaults = (factor,)
return Multiplier(factor)
twice = MultiplierFactory(2)()
</code></pre>
<p>Code is almost clean now. The only puzzling line, maybe, would be:</p>
<pre><code>Multiplier.__init__.im_func.func_defaults = (factor,)
</code></pre>
<p>What's in there? I looked at the <a href="http://docs.python.org/reference/datamodel.html#the-standard-type-hierarchy" rel="nofollow">datamodel doc</a>, and found that <code>func_defaults</code> was "<em>A tuple containing default argument values for those arguments that have defaults, or None if no arguments have a default value</em>". <strong><em>Are we just changing the default value for</em> <code>factor</code> <em>argument in</em> <code>__init__</code> <em>here?</em></strong> Resulting code would then be:</p>
<pre><code>class MultiplierFactory(object):
def __init__(self, factor=1):
self.factor = factor
def __call__(self, factor=None):
if factor is None:
factor = self.factor
class Multiplier(object):
def __init__(self, innerfactor=factor):
self.factor = innerfactor
def __call__(self, n):
return self.factor*n
return Multiplier(factor)
twice = MultiplierFactory(2)()
</code></pre>
<p>Which means that dynamically setting the default value was just useless noise, since <code>Multiplier</code> is never called without a default parameter, <strong><em>right</em></strong>?</p>
<p>And we could probably simplify it to:</p>
<pre><code>class MultiplierFactory(object):
def __init__(self, factor=1):
self.factor = factor
def __call__(self, factor=None):
if factor is None:
factor = self.factor
def my_multiplier(n):
return factor*n
return my_multiplier
twice = MultiplierFactory(2)() # similar to MultiplierFactory()(2)
</code></pre>
<p>Correct?</p>
<p><em>And for those hurrying to "this is not a real question"... read again, my questions are in bold+italic</em></p>
http://stackoverflow.com/questions/928990/looping-over-a-python-ironpython-object-methods1Looping over a Python / IronPython Object MethodsB. Tyndall2009-05-30T04:24:46Z2009-09-19T02:17:33Z
<p>What is the proper way to loop over a Python object's methods and call them?</p>
<p>Given the object:</p>
<pre><code>class SomeTest():
def something1(self):
print "something 1"
def something2(self):
print "something 2"
</code></pre>
http://stackoverflow.com/questions/1415990/querying-data-based-on-3rd-level-relationship-in-cakephp0Querying data based on 3rd level relationship in CakePHPIcing2009-09-12T20:03:55Z2009-09-17T21:09:00Z
<p>I have the following relationships set up:</p>
<pre><code>A HABTM B
B belongsTo C
C hasMany B
</code></pre>
<p>Now, for a given A, I need all C with the B's attached. I can write the SQL queries, but what's the proper CakePHP way? What method do I call on which model, and with which parameters?</p>
http://stackoverflow.com/questions/974931/multiply-operator-applied-to-listdata-structure4Multiply operator applied to list(data structure)hotadvice2009-06-10T11:06:42Z2009-08-20T08:15:46Z
<p>Hello there</p>
<p>I'm reading <a href="http://openbookproject.net/thinkCSpy/" rel="nofollow">How to think like a computer scientist</a> which is an introductory text for "Python Programming".</p>
<p>I want to clarify the behaviour of multiply operator (<code>*</code>) when applied to lists.</p>
<p>Consider the function <strong>make_matrix</strong></p>
<pre><code>def make_matrix(rows, columns):
"""
>>> make_matrix(4, 2)
[[0, 0], [0, 0], [0, 0], [0, 0]]
>>> m = make_matrix(4, 2)
>>> m[1][1] = 7
>>> m
[[0, 0], [0, 7], [0, 0], [0, 0]]
"""
return [[0] * columns] * rows
</code></pre>
<p>The actual output is </p>
<pre><code>[[0, 7], [0, 7], [0, 7], [0, 7]]
</code></pre>
<p>The correct version of <strong>make_matrix</strong> is :</p>
<pre><code>def make_matrix(rows, columns):
"""
>>> make_matrix(3, 5)
[[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]
>>> make_matrix(4, 2)
[[0, 0], [0, 0], [0, 0], [0, 0]]
>>> m = make_matrix(4, 2)
>>> m[1][1] = 7
>>> m
[[0, 0], [0, 7], [0, 0], [0, 0]]
"""
matrix = []
for row in range(rows):
matrix += [[0] * columns]
return matrix
</code></pre>
<p>The reason why first version of <strong>make_matrix</strong> fails ( as explained in the book at 9.8 ) is that</p>
<p><em>...each row is an alias of the other rows...</em></p>
<p>I wonder why </p>
<pre><code>[[0] * columns] * rows
</code></pre>
<p>causes <em>...each row is an alias of the other rows...</em></p>
<p>but not </p>
<pre><code>[[0] * columns]
</code></pre>
<p>i.e. why each <code>[0]</code> in a row is not an alias of other row element.</p>
http://stackoverflow.com/questions/53225/how-do-you-check-whether-a-python-method-is-bound-or-not7How do you check whether a python method is bound or not?Readonly2008-09-10T00:31:11Z2009-06-13T05:20:39Z
<p>Given a reference to a method, is there a way to check whether the method is bound to an object or not? Can you also access the instance that it's bound to?</p>
http://stackoverflow.com/questions/961048/get-class-that-defined-method-in-python1Get class that defined method in PythonJesse Aldridge2009-06-07T02:18:12Z2009-06-07T13:08:07Z
<p>How can I get the class that defined a method in Python?</p>
<p>I'd want the following example to print "<strong>main</strong>.FooClass":</p>
<pre><code>class FooClass:
def foo_method(self):
print "foo"
class BarClass(FooClass):
pass
bar = BarClass()
print get_class_that_defined_method(bar.foo_method)
</code></pre>
http://stackoverflow.com/questions/880160/how-do-you-know-when-looking-at-the-list-of-attributes-and-methods-listed-in-a-di3How do you know when looking at the list of attributes and methods listed in a dir which are attributes and which are methods?PyNEwbie2009-05-18T22:42:38Z2009-06-05T07:28:37Z
<p>I am working through trying to learn to program in Python and am focused on getting a better handle on how to use Standard and other modules. The dir function seems really powerful in the interpreter but I wonder if I am missing something because of my lack of OOP background. Using S.Lotts book I decided to use his Die class to learn more about syntax and use of classes and instances. </p>
<p>Here is the original code:</p>
<pre><code>class Die(object):
''' simulate a six-sided die '''
def roll(self):
self.value=random.randrange(1,7)
return self.value
def getValue(self):
return self.value
</code></pre>
<p>I was looking at that and after creating some instances I wondered if the word value was a keyword somehow and what the use of the word object in the class statement did and so I decided to find out by changing the class definition to the following:</p>
<pre><code>class Die():
''' simulate a six-sided die '''
def roll(self):
self.ban=random.randrange(1,7)
return self.ban
def getValue(self):
return self.ban
</code></pre>
<p>That change showed me that I got the same behavior from my instances but the following methods/attributes were missing from the instances when I did dir:</p>
<pre><code>'__class__', '__delattr__', '__dict__', '__doc__', '__getattribute__',
'__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__',
_repr__', '__setattr__', '__str__', '__weakref__'
</code></pre>
<p>I also figured out that when I did a dir on an instance I had an additional keyword-<b>ban</b> which I finally figured out was an attribute of my instance. This helped me understand that I could use <b>d1.ban</b> to access the value of my instance. The only reason I could figure out that this was an attribute was I typed <b>d1.happy</b> and got an <b>AttributeError</b> I figured out that <b>d1.GetValue</b> was a method attached to Die because that is what the interpreter told me. </p>
<p>So when I am trying to use some complicated but helpful module like BeautifulSoup how can I know which of the things that are listed are attributes of my instance or methods of my instance after typing <b>dir(instance)</b>. I would need to know this because this poking around has taught me that with attributes I am calling the result of a method and with methods I am invoking a function on my instance.</p>
<p>This question is probably too wordy but it sure did help me better understand the difference between attributes and methods. Specifically, when I look at the result of calling dir on an instance of my Die class I see this</p>
<pre><code>['__doc__', '__module__', 'ban', 'getValue', 'roll']
</code></pre>
<p>So it would seem useful to know by looking at that list which are attributes and which are methods without having to resort to trial and error or result to typing in <b>hasattr(myInstance,suspectedAttributeName)</b>.</p>
<p>After posting the question I tried </p>
<pre><code>for each in dir(d1):
print hasattr(d1,each)
</code></pre>
<p>which tells me strictly speaking that all methods are attributes. but I can't call a method without the <b>()</b> so it seems to me that the hasattr() is misleading.</p>
http://stackoverflow.com/questions/911905/is-there-a-way-to-access-the-formal-parameters-if-you-implement-getattribute1Is there a way to access the formal parameters if you implement __getattribute__Charles Reich2009-05-26T17:53:29Z2009-06-05T07:27:47Z
<p>It seems as thought <strong>getattribute</strong> has only 2 parameters (self, name).</p>
<p>However, in the actual code, the method I am intercepting actual takes arguments.</p>
<p>Is there anyway to access those arguments?</p>
<p>Thanks,</p>
<p>Charlie</p>
http://stackoverflow.com/questions/218616/getting-method-parameter-names-in-python12Getting method parameter names in pythonStaale2008-10-20T14:22:02Z2009-06-05T07:20:47Z
<p>Given the python function:</p>
<pre><code>def aMethod(arg1, arg2):
pass
</code></pre>
<p>How can I extract the number and names of the arguments. Ie. given that I have a reference to func, I want the func.[something] to return ("arg1", "arg2")</p>
<p>The usage scenario for this is that I have a decorator, and I wish to use the method arguments in the same order that they appear for the actual function as a key. Ie. how would the decorator look that printed "a,b" when I call aMethod("a","b")</p>
http://stackoverflow.com/questions/485095/why-arent-all-the-names-in-dirx-valid-for-attribute-access3Why aren't all the names in dir(x) valid for attribute access?joeforker2009-01-27T20:30:47Z2009-06-05T07:20:30Z
<p>Why would a coder stuff things into <code>__dict__</code> that can't be used for attribute access? For example, in my Plone instance, <code>dir(portal)</code> includes <code>index_html</code>, but <code>portal.index_html</code> raises AttributeError. This is also true for the <code>__class__</code> attribute of <code>Products.ZCatalog.Catalog.mybrains</code>. Is there a good reason why <code>dir()</code> can't be trusted?</p>
<p>Poking around the <code>inspect</code> module, I see they use <code>object.__dict__['x']</code> instead of attribute access for this reason and because they do not want to trigger <code>getattr</code> magic.</p>
http://stackoverflow.com/questions/622161/python-reflection-and-type-conversion4Python Reflection and Type Conversiondsimcha2009-03-07T17:15:41Z2009-06-05T07:20:18Z
<p>In Python, functions like str(), int(), float(), etc. are generally used to perform type conversions. However, these require you to know at development time what type you want to convert to. A subproblem of some Python code I'm trying to write is as follows:</p>
<p>Given two variables, <code>foo</code> and <code>bar</code>, find the type of <code>foo</code>. (It is not known at development time, as this is generic code.) Then, attempt to convert <code>bar</code> to whatever type <code>foo</code> is. If this cannot be done, throw an exception.</p>
<p>For example, let's say you call the function that does this <code>conv</code>. Its signature would look like</p>
<pre><code>def conv(foo, bar) :
# Do stuff.
</code></pre>
<p>It would be called something like:</p>
<pre><code>result = conv(3.14, "2.718") # result is now 2.718, as a float.
</code></pre>
http://stackoverflow.com/questions/640479/python-introspection-how-to-get-an-unsorted-list-of-object-attributes2Python introspection: How to get an 'unsorted' list of object attributes?molicule2009-03-12T21:04:56Z2009-06-05T07:19:53Z
<p>The following code</p>
<pre><code>import types
class A:
class D:
pass
class C:
pass
for d in dir(A):
if type(eval('A.'+d)) is types.ClassType:
print d
</code></pre>
<p>outputs</p>
<pre><code>C
D
</code></pre>
<p>How do I get it to output in the order in which these classes were defined in the code? I.e.</p>
<pre><code>D
C
</code></pre>
<p>Is there any way other than using inspect.getsource(A) and parsing that?</p>
http://stackoverflow.com/questions/954340/getting-objects-parent-namespace-in-python2Getting object's parent namespace in python?Eye of Hell2009-06-05T05:03:01Z2009-06-05T07:16:59Z
<p>Hello.</p>
<p>In python it's possible to use '.' in order to access object's dictionary items. For example:</p>
<pre><code>class test( object ) :
def __init__( self ) :
self.b = 1
def foo( self ) :
pass
obj = test()
a = obj.foo
</code></pre>
<p>From above example, having 'a' object, is it possible to get from it reference to 'obj' that is a parent namespace for 'foo' method assigned? For example, to change obj.b into 2?</p>
http://stackoverflow.com/questions/546337/how-do-i-perform-introspection-on-an-object-in-python-2-x2How Do I Perform Introspection on an Object in Python 2.x?Metahyperbolic2009-02-13T15:22:50Z2009-06-05T07:16:57Z
<p>I'm using Python 2.x and I have an object I'm summoning from the aether; the documentation on it is not particularly clear. I would like to be able to get a list of properties for that object and the type of each property. </p>
<p>Similarly, I'd like to get a list of methods for that object, as well, plus any other information I could find on that method, such as number of arguments and their respective types.</p>
<p>I have a feeling that I am simply missing the correct jargon in my Google searches. Not that I want to derail with specifics, but it's Active Directory, so that's always fun.</p>
http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python3Getting the class name of an instance in PythonDan2009-02-04T11:37:48Z2009-06-05T07:15:28Z
<p>Hi,</p>
<p>How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?</p>
<p>Was thinking maybe the inspects module might have helped me out here, but it doesn't seem to give me what I want and short of parsing the <code>__class__</code> member, I'm not sure how to get at this information.</p>
<p>Thanks
Dan</p>
http://stackoverflow.com/questions/612468/problem-using-superpython-2-5-21Problem using super(python 2.5.2)Diones2009-03-04T21:18:13Z2009-06-05T07:14:48Z
<p>I'm writing a plugin system for my program and I can't get past one thing:</p>
<pre><code>class ThingLoader(object):
'''
Loader class
'''
def loadPlugins(self):
'''
Get all the plugins from plugins folder
'''
from diones.thingpad.plugin.IntrospectionHelper import loadClasses
classList=loadClasses('./plugins', IPlugin)#Gets a list of
#plugin classes
self.plugins={}#Dictionary that should be filled with
#touples of objects and theirs states, activated, deactivated.
classList[0](self)#Runs nicelly
foo = classList[1]
print foo#prints <class 'TestPlugin.TestPlugin'>
foo(self)#Raise an exception
</code></pre>
<p>The test plugin looks like this:</p>
<pre><code>import diones.thingpad.plugin.IPlugin as plugin
class TestPlugin(plugin.IPlugin):
'''
classdocs
'''
def __init__(self, loader):
self.name='Test Plugin'
super(TestPlugin, self).__init__(loader)
</code></pre>
<p>Now the IPlugin looks like this:</p>
<pre><code>class IPlugin(object):
'''
classdocs
'''
name=''
def __init__(self, loader):
self.loader=loader
def activate(self):
pass
</code></pre>
<p>All the IPlugin classes works flawlessy by them selves, but when called by ThingLoader the program gets an exception:</p>
<pre><code>File "./plugins\TestPlugin.py", line 13, in __init__
super(TestPlugin, self).__init__(loader) NameError:
global name 'super' is not defined
</code></pre>
<p>I looked all around and I simply don't know what is going on.</p>
http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a9Is there a function in Python to print all the current properties and values of an object?fuentesjr2008-10-10T16:19:27Z2009-06-05T07:12:53Z
<p>So what I'm looking for here is something like <a href="http://us2.php.net/print_r" rel="nofollow">PHP's print_r</a> function. This is so I can debug my scripts by seeing what's the state of the object in question.</p>
http://stackoverflow.com/questions/484890/how-would-you-determine-where-each-property-and-method-of-a-python-class-is-defin2How would you determine where each property and method of a Python class is defined?joeforker2009-01-27T19:37:19Z2009-06-05T07:11:55Z
<p>Given an instance of some class in Python, it would be useful to be able to determine which line of source code <em>defined</em> each method and property (e.g. to implement [1]). For example, given a module ab.py</p>
<pre><code>class A(object):
z = 1
q = 2
def y(self): pass
def x(self): pass
class B(A):
q = 4
def x(self): pass
def w(self): pass
</code></pre>
<p>define a function whither(class_, attribute) returning a tuple containing the filename, class, and line in the source code that defined or subclassed <code>attribute</code>. This means the definition in the class body, not the latest assignment due to overeager dynamism. It's fine if it returns 'unknown' for some attributes.</p>
<pre><code>>>> a = A()
>>> b = B()
>>> b.spigot = 'brass'
>>> whither(a, 'z')
("ab.py", <class 'a.A'>, [line] 2)
>>> whither(b, 'q')
("ab.py", <class 'a.B'>, 8)
>>> whither(b, 'x')
("ab.py", <class 'a.B'>, 9)
>>> whither(b, 'spigot')
("Attribute 'spigot' is a data attribute")
</code></pre>
<p>I want to use this while introspecting Plone, where every object has hundreds of methods and it would be really useful to sort through them organized by class and not just alphabetically.</p>
<p>Of course, in Python you can't always reasonably know, but it would be nice to get good answers in the common case of mostly-static code.</p>