The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
65 views

Why does Python look for __members__ rather than the requested field?

I have a class that defines its own __getattr__() in order to interact with an XML tree instantiated objects contain. This hides the XML structure from the user and allows him to set tag values, etc. ...
0
votes
2answers
64 views

Why “__getattr__” does not work in python “ctypes”?

I stop it in the example of "datetime", is rewritten in a real example of lxml. (It may be strange because English is translated in Google Translate is my statement I'm sorry.) It is thought that I ...
0
votes
2answers
81 views

Convert string to function in python

I have a string coming from the database. This string is the name of a file .py that is within a module. The structure is this: files ├── file1.py ├── file2.py └── __init__.py The file1.py ...
0
votes
2answers
40 views

How to turn these functions generic

I wanted to shorten my code, since i`m having more functions like this. I was wondering if I could use getattr() to do something like this guy asked. Well, here it goes what I`ve got: def ...
0
votes
2answers
47 views

__getattr__ within a module in python

I am working with python. I want to know whether or not any method is existed or not in same module. I think getattr() does this but I couldn't do. Here is sample code saying what really I want to do ...
1
vote
2answers
67 views

How to run arbitrary string as command

I see answers where getattr() is utilized for some simple one method/function call. How about arbitrary string, e.g. doing web parsing here: from bs4 import BeautifulSoup import urllib f = ...
1
vote
3answers
78 views

Python: Using code to write code - For a beginner

The issue I'm having right now is loading a bunch of sound files as their own objects in Pygame. You load a sound with this syntax: sound1 = pygame.mixer.Sound('file.wav') Say I have seven files, ...
2
votes
1answer
73 views

Get attributes for class and instance in python

In python work next code: class MyClass(object): field = 1 >>> MyClass.field 1 >>> MyClass().field 1 When I want return value for custom fields I use next code: class ...
0
votes
2answers
82 views

Python combining setattr and getattr

I would like to update the attributes of a class dynamically, but it seems that the combination of setattr and getattr does not work as I would like to use it. Here is my main class: class ...
1
vote
3answers
131 views

Obtaining object reference for a method using getattr

Say, I have the following class called Test with a method called start >>> class Test: ... def __init__(self, *args, **kwargs): ... pass ... def start(self): ... ...
0
votes
2answers
57 views

Smartly handle different permissions with inheritance

I have to manage permissions and I have different user types, as for example a couple here. def not_allowed(*args, **kwargs): return False class User(object): def __init__(self, userid): ...
0
votes
2answers
53 views

How to handle & return both properties AND functions missing in a Python class using the __getattr__ function?

It is fairly easy to use the __getattr__ special method on Python classes to handle either missing properties or functions, but seemingly not both at the same time. Consider this example which ...
4
votes
2answers
106 views

Is there any way to override the double-underscore (magic) methods of arbitrary objects in Python?

I want to write a wrapper class which takes a value and behaves just like it except for adding a 'reason' attribute. I had something like this in mind: class ExplainedValue(object): def ...
-3
votes
1answer
65 views

Python: I want to get all of the attributes from several classes, using getAttr [closed]

I wish to get all of the attributes from several files, and wish to have one method in order to get the attributes from several 'test files' here is a sample of my code the function: def ...
0
votes
3answers
153 views

Bound Python method accessed with getattr throwing:“ takes no arguments (1 given) ”

Something rather odd is happening in an interaction between bound methods, inheritance, and getattr that I am failing to understand. I have a directory setup like: /a __init__.py start_module.py ...
2
votes
1answer
146 views

getattr() versus dict lookup, which is faster?

A somewhat noobish, best practice question. I dynamically look up object attribute values using object.__dict__[some_key] as a matter of habit. Now I am wondering which is better/faster: my current ...
4
votes
1answer
149 views

Can the usage of `setattr` (and `getattr`) be considered as bad practice?

setattr and getattr kind of got into my style of programing (mainly scientific stuff, my knowledge about python is self told). Considering that exec and eval inherit a potential danger since in some ...
0
votes
1answer
78 views

How to access call parameters and arguments with __getattr__

I have the following code, where most of the code seem to look awkward, confusing and/or circumstantial, but most of it is to demonstrate the parts of the much larger code where I have a problem with. ...
0
votes
1answer
94 views

How are arguments passed to a function through __getattr__

Consider the following code example (python 2.7): class Parent: def __init__(self, child): self.child = child def __getattr__(self, attr): print("Calling __getattr__: "+attr) ...
3
votes
1answer
177 views

Learn Python The Hard Way: Exercise 43 Function Creation

while True: print "\n--------" room = getattr(self, next) next = room() My question stems from the block of code above, found in Learn Python The Hard Way - Exercise 43. I understand ...
1
vote
1answer
280 views

python - trying to override __getattr__ for dynamically added class but only sort of works

I am trying to add a new class to an existing class at run time (using "type(...)"). I am also trying to override that new class' __getattr__ so that I can do my own behavior on attributes that ...
1
vote
5answers
135 views

getting dynamic attribute in python

I have and object with an pseudo or special attribute that can be named in three different ways (Note: I don't control the code which generates the object) The value in the attributes (depending ...
1
vote
4answers
178 views

Dynamic method generation in python

I currently have this code: class Generator(object): def __getattr__(self, name): def f(self): return ("Result of"+name, self) f.__name__ = name return f ...
1
vote
2answers
173 views

Why is __getattr__ not invoked for missing “magically” invoked methods?

I am trying to implement a class in which an attempt to access any attributes that do not exist in the current class or any of its ancestors will attempt to access those attributes from a member. ...
2
votes
1answer
166 views

'super' object not calling __getattr__

I have one object wrapped inside another. The "Wrapper" accesses the attributes from the "Wrapped" object by overriding __getattr__. This works well until I need to override an atribute on a sub ...
0
votes
2answers
145 views

Class confusion in Python with the getattr

A similar question was asked here . However, the responses didn't really help me grasp how some parts of the program worked. The program is as follows: from sys import exit from random import randint ...
1
vote
3answers
105 views

python access the subclasses of a class as properties

So I have a .py file containing a class where its subclasses can be accessed as properties. All these subclasses are defined beforehand. I also need all the subclasses to have the same ability (having ...
0
votes
1answer
551 views

Python using getattr to call function with variable parameters

I'm using getattr to call different functions depending on a variable. Im doing something like that: getattr(foo, bar) () That works, calling functions like foo.bar() My problem is that I have ...
0
votes
1answer
386 views

gettattr , “attributes must be string” error in python

I am trying to use getattr function in my code using generator li=[] m=[method for method in dir(li) if callable(getattr(li,method))] print getattr(li,(str(i) for i in m)) Error: TypeError: ...
1
vote
3answers
281 views

C++ equivalent of Python getattr

In python, there is a function called getattr which would look like this: class MyObject(): def __init__(self): self.xyz = 4 obj = MyObject() getattr(obj, 'xyz') where the call to ...
0
votes
1answer
319 views

python string to function: globals() vs sys.module vs dictionary

I want to know what is the best way to map the string to a function. so far I know I can use: globals()[func_string] sys.modules[__name__] funcs_dictionary["func_string" : func] Here is the code: ...
0
votes
3answers
205 views

How can I reach a private variable within the object

I would like to modify an object private variable class Example(): __myTest1 = 1 __myTest2 = 1 def __init__(self): pass def modifyTest(self, name = 'Test1', value): ...
5
votes
1answer
1k views

Why is getattr() so much slower than self.__dict__.get()?

The example below is from a REST database driver on Python 2.7. In the __setattr__ method below, if I use the commented out getattr() line, it reduces the object instantiation performance from 600 ...
2
votes
1answer
427 views

Python intercept method call

Let me start by saying what I would like to do. I want to create a lazy wrapper for a variable, as in I record all the method calls and operator calls and evaluate them later when I specify the ...
1
vote
1answer
335 views

Extracting the value of a key with BeautifulSoup

I want to extract the value of the "archivo" key of something like this: ... <applet name="bla" code="Any.class" archive="Any.jar"> <param name="abc" value="space='1' archivo='bla.jpg'" ...
0
votes
2answers
316 views

__setattr__ only for names not found in the object's attributes`?

I want to use __setattr__ only when the attribute was not found in the object's attributes, like __getattr__. Do I really have to use try-except? def __setattr__(self, name, value): try: ...
5
votes
2answers
128 views

doc for __getattr__ defined attributes

I have to customize __getattr__ to call another function to read. This works well except the help(object.attr) does not work. This code is used in an interactive environment, so the help() becomes ...
3
votes
4answers
907 views

Dynamically get dict elements via getattr?

I want to dynamically query which objects from a class I would like to retrieve. getattr seems like what I want, and it performs fine for top-level objects in the class. However, I'd like to also ...
0
votes
1answer
211 views

Problems with getattr

I've been tearing my hair out for the past hour trying to figure out a bug in the IRC-enabled program I'm working on, and after some debugging I've found that for some reason, getattr isn't working ...
0
votes
3answers
149 views

Django access related property dynamically?

I am using getattr to access properties of a model dynamically like so (Assuming the Student model has a property called name): students = Student.objects.all() property = 'name' for student in ...
4
votes
2answers
211 views

PHP approach to python's magic __getattr__()

I was wondering if there was some way in PHP to duplicate some of the magic of Python attribute/key access. I use a Mongo ORM class written by Steve Lacey called Minimongo in which he utilizes the ...
3
votes
3answers
326 views

Is there a way to inspect incoming args from within __getattr__ or to somehow otherwise redirect a call based upon incoming arguments?

Some background: We have a system for transactions where we devide the flow based upon the country the transaction bills to. We have a logging table that exists in 2 instances, one DB logging ...
0
votes
1answer
116 views

Overriding eval globals with __getattr__ problems

I'm trying to override globals so that any attribute name that doesn't exists returns itself(the name string). The reason for this is to use it in eval to do some quick/hacky parsing of a c ...
2
votes
2answers
228 views

Python - getattr and concatenation

So in playing around with getattr in my code I discovered the following: myVariable = foo.A.bar works...but something like this: B = "A" myVariable = getattr(foo, B + ".bar") returns an error ...
2
votes
4answers
2k views

Using __getattribute__ or __getattr__ to call methods in Python

I am trying to create a subclass which acts as a list of custom classes. However, I want the list to inherit the methods and attributes of the parent class and return a sum of the quantities of each ...
4
votes
4answers
205 views

Python - How to define attributes not affected by __getattr__?

I'm fairly new to Python. In programming a lot of PHP recently I got used to some creative use of __get and __set "magic" methods. These were only called when a public variable of the class wasn't ...
0
votes
3answers
202 views

Why does this __getattr__ function not work?

I've got this little class I wrote to try playing with custom __getattr__ methods, and every time I run it, I get an Attribute error: class test: def __init__(self): self.attrs ...
4
votes
4answers
2k views

Accessing list items with getattr/setattr in Python

Trying to access/assign items in a list with getattr and setattr funcions in Python. Unfortunately there seems to be no way of passing the place in the list index along with the list name. Here's some ...
3
votes
3answers
759 views

Why doesn't Python have a hybrid getattr + __getitem__ built in?

I have methods that accept dicts or other objects and the names of "fields" to fetch from those objects. If the object is a dict then the method uses __getitem__ to retrieve the named key, or else it ...
2
votes
1answer
2k views

XML Parsing to get Attribute Value

I am parsing a xml using SAX Parser. Everythings working fine when the data I need to get is the body of a xml tag. The only problem I am getting is when the data I need is the attribute value of that ...

1 2