The setattr tag has no wiki summary.
0
votes
1answer
26 views
Python: differences among __setitem__ ; setattr ; set
simple explanations by examples would do where the 3 of them cannot be interchanged.
def __setitem__(self,**k):
#self.val=k
for key in k:
...
2
votes
2answers
25 views
Python, how to use __setattr__ on dictionary object that is part of the class that overloads the method?
As illustrated in the code below, why can't I use __setattr__ to set values on a dict that is part of the class that overloads the method? I expected that b.hello would not exists.
class MyClass():
...
0
votes
2answers
80 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 ...
0
votes
1answer
51 views
Set a mongo database in pymongo without eval(). Maybe setattr()?
I'd been used to doing this in pymongo as a means of accessing a particular database:
import pymongo
connection = pymongo.MongoClient()
db = connection.DBNAME
then querying ...
1
vote
3answers
105 views
how to set an attribute in a nested object in Python?
I'm making my first attempts at Python.
I need to loop over a log, parse log entries and then update an object, which includes nested objects for machines listed in the log.
This is what I have:
...
1
vote
1answer
43 views
How can I clean up use of exec, can’t get setattr to do the job?
I want to check an arbitrary (defined in data) set of rules expressed in text and eval() does the job nicely.
e.g. to define a rule to check that A and B are both valid:
Rule = "A and B"
print ...
4
votes
1answer
146 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 ...
1
vote
2answers
59 views
I'd like to create a mock object in python
I want a dummy object I can instantiate in python and programmatically create attributes for via setattr().
I tried it on the built in object but probably for a good reason that didn't work.
What ...
1
vote
1answer
98 views
Clean way to disable `__setattr__` until after initialization
I've written the following wrapper class. I want to define __setattr__ such that it redirects all attributes to the wrapped class. However, this prevents me from initializing the wrapper class. Any ...
0
votes
1answer
156 views
how to set attribute to a python file?
I know how to set attribute for a class, but can't find how to set for a file..
flow = ['1','4','5','2']
def test_generator(test):
def test_parser(self):
print test
return ...
2
votes
2answers
76 views
AttributeError when using object.__setattr__
What's wrong with the last three lines?
class FooClass(object):
pass
bar1 = object()
bar2 = object()
bar3 = object()
foo1 = FooClass()
foo2 = FooClass()
foo3 = FooClass()
...
3
votes
2answers
722 views
Difference between setattr and object manipulation in python/django
I have the following model:
class Ticket(models.Model):
title = models.CharField()
merged_to = models.ForeignKey("self", related_name='merger_ticket', null=True, blank=True)
looser_ticket ...
0
votes
2answers
175 views
__setattr__ breaking code?
Here's the code I have
class Human(object):
def __init__(self, name, gender):
self.name = name
self.gender = gender
print 'Hi there, I am '+ self.name
def ThankHeavens(self):
...
3
votes
1answer
240 views
Is there a nicer way to do a getter property for dynamically named attribute?
I have a number of similar fields in one of my classes modelling json data. All fields are initialized to None to help static tools know they exist then helper functions help initialize them based on ...
2
votes
1answer
63 views
How to restrict setting an attribute outside of constructor?
I want to forbid further assignments on some attributes of a class after it was initialized. For instance; no one can explicitly assign any value to 'ssn' (social security number) property after the ...
3
votes
2answers
235 views
Setting special methods using setattr()
Is it possible to dynamically assign special methods, such as __getitem__, to a class instance using setattr()? For example, if I have this:
class Example (object):
pass
And then try this:
...
0
votes
3answers
201 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):
...
3
votes
2answers
112 views
setattr, object deletion and cyclic garbage collection
I would like to understand how object deletion works on python. Here is a very simple bunch of code.
class A(object):
def __init__(self):
setattr(self, "test", self._test)
def ...
2
votes
2answers
9k views
Using setattr() in python
I am looking for someone to explain the basics of how to use, and not use setattr().
My problem arose trying to use one class method/function to return data that is then put in another ...
0
votes
1answer
200 views
Python class as datastore
I'm trying to write a Python class that acts like some sort of datastore. So instead of using a dictionary for example, I want to access my data as class.foo and still be able to do all the cool stuff ...
0
votes
1answer
170 views
__setattr__ class decorator python
I'm using a class decorator but I didn't understand how set attribute with setattr, this is my code:
def cldecor(*par):
def onDecorator(aClass):
class wrapper:
def ...
0
votes
2answers
181 views
GetAttr Function Problems (Python 3)
I have the following in a Python script:
setattr(stringRESULTS, "b", b)
Which gives me the following error:
AttributeError: 'str' object has no attribute 'b'
Can any-one telling me what the ...
0
votes
1answer
295 views
How to un-override __setattr__ method?
The goal of this question is to understand how "built in" are the built-in functions in python.
If I override setattr method, how can I get it back? For example, I have class "Working" like this:
...
0
votes
2answers
310 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:
...
1
vote
6answers
1k views
python koans: class proxy
I'm solving the python koans.
I haven't got any real problem until the 34th.
this is the problem:
Project: Create a Proxy Class
In this assignment, create a proxy class (one is started for ...
3
votes
2answers
549 views
Why does setattr fail on a bound method
In the following, setattr succeeds in the first invocation, but fails in the second, with:
AttributeError: 'method' object has no attribute 'i'
Why is this, and is there a way of setting an ...
2
votes
1answer
657 views
What's the difference between setattr() and object.__setattr__()?
I know that you can't call object.__setattr__ on objects not inherited from object, but is there anything else that is different between the two? I'm working in Python 2.6, if this matters.
7
votes
2answers
4k views
How to I properly override __setattr__ and __getattribute__ on new-style classes in Python?
I want to override my Python class's __getattribute__ and __setattr__ methods. My use case is the usual one: I have a few special names that I want to handle, and I want the default behavior for ...
2
votes
1answer
112 views
Python: How to return an instance of an object along with attributes assigned with setattr
I am still very new to python, but I need to interface with some software that is written as a bunch of python modules (.py files in case I incorrectly identified them as "modules.") This program has ...
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 ...
1
vote
1answer
280 views
Trying to dynaimcally create properties at runtime with Python using reflected data
So I'm trying to figure out if what I want to do is even possible. I am writing some test code for an application, and I have objects that contain properties representing some of the elements we have ...
13
votes
3answers
383 views
Python: inconsistence in the way you define the function __setattr__?
Consider this code:
class Foo1(dict):
def __getattr__(self, key): return self[key]
def __setattr__(self, key, value): self[key] = value
class Foo2(dict):
__getattr__ = dict.__getitem__
...
1
vote
1answer
311 views
Dynamic Instance variables within Class Scope
I've got a class that is a descendant of SQLAlchemy's declarative base. I need to write a bridge object that will translate between the declarative base and another system I am running, but I want the ...
1
vote
1answer
484 views
Setting Property via a String
I'm trying to set a Python class property outside of the class via the setattr(self, item, value) function.
class MyClass:
def getMyProperty(self):
return self.__my_property
def ...
1
vote
1answer
362 views
setattr() not setting
I have a class (bot), which has an attribute "health"; since there are a lot of parameters to this class, and I wished for the user to input a lot of them, I chose to loop through a dict of ...
2
votes
2answers
111 views
need a simple way to add meta information/class to a python list/tuple variable?
All,
I want simple meta information to be enclosed on an list object, see below code.
>>> a = []
>>> a.foo = 100
Traceback (most recent call last):
File "<interactive ...
1
vote
1answer
217 views
Python: Inject attribute into object created by C library
I'm trying to inject an attribute into lxml.etree._Element, but as that module is completely implemented in C, setattr fails:
Traceback (most recent call last):
[...]
...
1
vote
3answers
281 views
Is it possible to dynamically name attributes in an App Engine Model?
setattr allows you to dynamically name attributes in Python classes. I'm trying to do something similar with an App Engine Model:
class MyModel(db.Model):
def __init__(self, *args, **kwargs):
...
2
votes
1answer
365 views
create a class attribute without going through __setattr__
What I have below is a class I made to easily store a bunch of data as attributes.
They wind up getting stored in a dictionary.
I override __getattr__ and __setattr__ to store and retrieve the values ...
38
votes
4answers
8k views
How do I call setattr() on the current module?
What do I pass as the first parameter "object" to the function setattr(object, name, value), to set variables on the current module?
For example:
setattr(object, "SOME_CONSTANT", 42);
giving the ...
4
votes
2answers
409 views
Setting an class attribute with a given name in python while defining the class
I am trying to do something like this:
property = 'name'
value = Thing()
class A:
setattr(A, property, value)
other_thing = 'normal attribute'
def __init__(self, etc)
#etc..........
But ...
2
votes
2answers
310 views
Why does the “name” parameter to __setattr__ include the class, but __getattr__ doesn't?
The following code:
class MyClass():
def test(self):
self.__x = 0
def __setattr__(self, name, value):
print name
def __getattr__(self, name):
print name
...
1
vote
3answers
97 views
Overridden attribute access does not work (as expected)
The main objective of the following module, is to provide a kind of "constant" semantics for some names.
class ConstantError(Exception):
def __init__(self, msg):
self._msg = msg
...
0
votes
1answer
347 views
Jython 2.1 __getattr__
I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered:
if __client != None ...
4
votes
8answers
3k views
Python __init__ setattr on arguments?
It seems that often __init__ methods are similar to this:
def __init__(self, ivar1, ivar2, ivar3):
self.ivar1 = ivar1
self.ivar2 = ivar2
self.ivar3 = ivar3
Is there someway to turn the ...
3
votes
3answers
223 views
How to create a property with its name in a string?
Using Python I want to create a property in a class, but having the name of it in a string. Normally you do:
blah = property(get_blah, set_blah, del_blah, "bleh blih")
where get_, set_ and del_blah ...