Tagged Questions
The python-datamodel tag has no wiki summary.
397
votes
9answers
64k views
What is a metaclass in Python?
I've mastered almost all the Python concepts (well, let's say there are just OO concepts :-)) but this one is tricky.
I know it has something to do with introspection but it's still unclear to me.
...
92
votes
3answers
29k views
Getting the class name of an instance in Python
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?
Was ...
40
votes
9answers
23k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
26
votes
4answers
7k views
Getting method parameter names in python
Given the python function:
def aMethod(arg1, arg2):
pass
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 ...
15
votes
2answers
331 views
Is everything greater than None?
Is there a Python built-in datatype, besides None, for which:
>>> not foo > None
True
where foo is a value of that type? How about Python 3?
12
votes
7answers
3k views
How is the 'is' keyword implemented in Python?
... the is keyword that can be used for equality in strings.
>>> s = 'str'
>>> s is 'str'
True
>>> s is 'st'
False
I tried both __is__() and __eq__() but they didn't ...
11
votes
2answers
2k views
How do you check whether a python method is bound or not?
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?
7
votes
2answers
2k views
Python: Implementing slicing in __getitem__
I am trying to implement slice functionality for a class I am making that creates a vector representation.
I have this code so far, which I believe will properly implement the slice but whenever I do ...
7
votes
4answers
2k views
Get fully qualified class name of an object in python
For logging purposes I want to retrieve the fully qualified class name of a Python object. (With fully qualified I mean the class name including the package and module name.)
I know about ...
7
votes
3answers
3k views
Python Reflection and Type Conversion
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 ...
6
votes
3answers
3k views
Getting object's parent namespace in python?
In python it's possible to use '.' in order to access object's dictionary items. For example:
class test( object ) :
def __init__( self ) :
self.b = 1
def foo( self ) :
pass
obj = test()
...
5
votes
2answers
1k views
Multiply operator applied to list(data structure)
I'm reading How to think like a computer scientist which is an introductory text for "Python Programming".
I want to clarify the behaviour of multiply operator (*) when applied to lists.
Consider ...
4
votes
2answers
2k views
Get class that defined method in Python
How can I get the class that defined a method in Python?
I'd want the following example to print "__main__.FooClass":
class FooClass:
def foo_method(self):
print "foo"
class ...
4
votes
5answers
4k views
How Do I Perform Introspection on an Object in Python 2.x?
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 ...
3
votes
1answer
139 views
How to count both sides of many-to-many relationship in Google App Engine
Consider a GAE (python) app that lets users comment on songs. The expected number of users is 1,000,000+. The expected number of songs is 5,000.
The app must be able to:
Give the number of songs ...
3
votes
6answers
309 views
How do you know when looking at the list of attributes and methods listed in a dir which are attributes and which are methods?
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 ...
3
votes
5answers
2k views
Python introspection: How to get an 'unsorted' list of object attributes?
The following 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
outputs
C
D
How do I ...
3
votes
1answer
211 views
Why aren't all the names in dir(x) valid for attribute access?
Why would a coder stuff things into __dict__ that can't be used for attribute access? For example, in my Plone instance, dir(portal) includes index_html, but portal.index_html raises AttributeError. ...
2
votes
3answers
314 views
When where and how can i change the __class__ attr of an object in Python?
I'd like to be able to do:
>>> class a(str):
... pass
...
>>> b = a()
>>> b.__class__ = str
Traceback (most recent call last):
File "<stdin>", line 1, in ...
2
votes
1answer
93 views
decypher with me that obfuscated MultiplierFactory
This week on comp.lang.python, an "interesting" piece of code was posted by Steven D'Aprano as a joke answer to an homework question. Here it is:
class MultiplierFactory(object):
def ...
2
votes
6answers
205 views
Is there a way to access the formal parameters if you implement __getattribute__
It seems as though __getattribute__ has only 2 parameters (self, name).
However, in the actual code, the method I am intercepting actually takes arguments.
Is there anyway to access those arguments?
...
2
votes
3answers
461 views
How would you determine where each property and method of a Python class is defined?
Given an instance of some class in Python, it would be useful to be able to determine which line of source code defined each method and property (e.g. to implement [1]). For example, given a module ...
1
vote
4answers
82 views
Python std methods hierarchy calls documented?
just encountered a problem at dict "type" subclassing. I did override __iter__ method and expected it will affect other methods like iterkeys, keys etc. because I believed they call ...
1
vote
2answers
189 views
What does this Python code mean?
__author__="Sergio.Tapia"
__date__ ="$18-10-2010 12:03:29 PM$"
if __name__ == "__main__":
print("Hello")
print(__author__)
Where does it get __main__ and __name__?
Thanks for the help
1
vote
5answers
174 views
What is the easiest way to search through a list of dicts in Python?
My database currently returns a list of dicts:
id_list = ({'id': '0c871320cf5111df87da000c29196d3d'},
{'id': '2eeeb9f4cf5111df87da000c29196d3d'},
{'id': ...
1
vote
4answers
1k views
Looping over a Python / IronPython Object Methods
What is the proper way to loop over a Python object's methods and call them?
Given the object:
class SomeTest():
def something1(self):
print "something 1"
def something2(self):
print ...
1
vote
2answers
690 views
Problem using super(python 2.5.2)
I'm writing a plugin system for my program and I can't get past one thing:
class ThingLoader(object):
'''
Loader class
'''
def loadPlugins(self):
'''
Get all the plugins from ...
0
votes
3answers
315 views
python __getattr__ help
Reading a Book, i came across this code...
# module person.py
class Person:
def __init__(self, name, job=None, pay=0):
self.name = name
self.job = job
self.pay = pay
...
0
votes
1answer
658 views
python attribute lookup without any descriptor magic?
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 ...
0
votes
4answers
238 views
Querying data based on 3rd level relationship in CakePHP
I have the following relationships set up:
A HABTM B
B belongsTo C
C hasMany B
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 ...