473,507 Members | 13,597 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

getattr/setattr q.

Hi!

In a class C, I may do setattr(C,'x',10).

Is it possible to use getattr/setattr for variables not inside
classes or something equivalent? I mean with the same result as
exec("x=10").

Thanks.
Apr 3 '07 #1
10 1984
Paulo da Silva wrote:
In a class C, I may do setattr(C,'x',10).

Is it possible to use getattr/setattr for variables not inside
classes or something equivalent? I mean with the same result as
exec("x=10").
If you're at the module level, you can do::

globals()['x'] = 10

If you're inside a function, you probably want to look for another way
of doing what you're doing.

What's the actual task you're trying to accomplish here?

STeVe
Apr 3 '07 #2
Paulo da Silva <ps********@esotericaX.ptXwrites:
In a class C, I may do setattr(C,'x',10).
That would set an attribute on the class C, shared by all instances of
that class.

If you want to set an attribute on an instance, you need to do so on
the instance object::
>>class Foo(object):
... def __init__(self):
... setattr(self, 'bar', 10)
...
>>Foo.bar
Traceback (most recent call last):
File "<stdin>", line 1, in ?
AttributeError: type object 'Foo' has no attribute 'bar'
>>spam = Foo()
spam.bar
10
Is it possible to use getattr/setattr for variables not inside
classes or something equivalent? I mean with the same result as
exec("x=10").
"Variables not inside classes or functions" are attributes of the
module (so-called "global" attributes). Thus, you can use setattr on
the module object::
>>import sys
>>def foo():
... this_module = sys.modules[__name__]
... setattr(this_module, 'bar', 10)
...
>>bar
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'bar' is not defined
>>foo()
bar
10

--
\ "I'm beginning to think that life is just one long Yoko Ono |
`\ album; no rhyme or reason, just a lot of incoherent shrieks and |
_o__) then it's over." -- Ian Wolff |
Ben Finney
Apr 3 '07 #3
On Apr 2, 10:08 pm, Paulo da Silva <psdasil...@esotericaX.ptXwrote:
Is it possible to use getattr/setattr for variables not inside
classes...?
What does the python documentation say about the definition of
setattr()?

Apr 3 '07 #4
On Tue, 03 Apr 2007 05:08:42 +0100, Paulo da Silva wrote:
Hi!

In a class C, I may do setattr(C,'x',10).

Is it possible to use getattr/setattr for variables not inside
classes or something equivalent? I mean with the same result as
exec("x=10").
Yes, but you shouldn't unless you really need to. You're better off
rethinking your algorithm.

If you think you really need to, you probably don't.

If you *really* think you really need to, you might.

>>x
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'x' is not defined
>>globals()['x'] = 5
x
5
Note that there is also a function locals(), but it doesn't work as you
might expect:

>>def f():
.... locals()['x'] = 99
.... print x
....
>>f()
5

--
Steven D'Aprano

Apr 3 '07 #5
7stud escreveu:
On Apr 2, 10:08 pm, Paulo da Silva <psdasil...@esotericaX.ptXwrote:
>Is it possible to use getattr/setattr for variables not inside
classes...?

What does the python documentation say about the definition of
setattr()?
I didn't read the full python documentation, yet! I hope to survive
until then :-)
In the meanwhile, I searched google for setattr python but all
references I could see were about X.foo type.

One more "RTFM culture" response ...

Thanks.
Paulo

Apr 3 '07 #6
Steven Bethard escreveu:
Paulo da Silva wrote:
....
If you're at the module level, you can do::

globals()['x'] = 10

If you're inside a function, you probably want to look for another way
of doing what you're doing.

What's the actual task you're trying to accomplish here?

None. I asked just for curiosity. My problem has to do with the normal
case of a class or class instance. When I saw setattr/getattr as the way
to solve my problem I just felt curiosity on if and how it could be done
outside a class.

Thank you very much for your response.
Paulo
Apr 3 '07 #7
Paulo da Silva wrote:
Steven Bethard escreveu:
>Paulo da Silva wrote:
...
>If you're at the module level, you can do::

globals()['x'] = 10

If you're inside a function, you probably want to look for another way
of doing what you're doing.

What's the actual task you're trying to accomplish here?


None. I asked just for curiosity. My problem has to do with the normal
case of a class or class instance. When I saw setattr/getattr as the way
to solve my problem I just felt curiosity on if and how it could be done
outside a class.

Thank you very much for your response.
Paulo
You don't need setattr/getattr if you know in advance the name of the
attribute you need to access and you can get a reference to the object
whose attribute it is. So:
>>import sys
x = "Hello, Paulo"
sys.modules['__main__'].x
'Hello, Paulo'
>>globals()['x']
'Hello, Paulo'
>>>
regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
Recent Ramblings http://holdenweb.blogspot.com

Apr 3 '07 #8
Steve Holden wrote:
You don't need setattr/getattr if you know in advance the name of the
attribute you need to access and you can get a reference to the object
whose attribute it is. So:
>>x = "Hello, Paulo"
>>import sys
>>sys.modules['__main__'].x
'Hello, Paulo'
a.k.a
>>import __main__
__main__.x
'Hello, Paulo'

STeVe
Apr 3 '07 #9
Steven Bethard wrote:
Steve Holden wrote:
>You don't need setattr/getattr if you know in advance the name of the
attribute you need to access and you can get a reference to the object
whose attribute it is. So:
> >>x = "Hello, Paulo"
import sys
sys.modules['__main__'].x
'Hello, Paulo'

a.k.a
>>import __main__
>>__main__.x
'Hello, Paulo'
Indeed. Any handle on the right object will do.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
Recent Ramblings http://holdenweb.blogspot.com

Apr 3 '07 #10
Yes, but you shouldn't unless you really need to. You're better off
rethinking your algorithm.

I need it but inside a class. The idea is to pass an instance of a class
(think of something like a record but with some methods inside) with
"fields", whose names are not known in advance, to another class that
must handle those "fields" at the caller request given their names as
parameter strings.

Another use I am thinking of is in a xml driven program where some
parameters "foo=bar", read as strings, must be converted into internal
variables xxx_foo=bar. I have written a 1st draft using dicts but this
way it is much easier and readable.
Regards
Paulo
Apr 3 '07 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2695
by: Eric | last post by:
Slightly off topic, i know, but here goes: I'm trying to xlate a module of mine to C++. Only problem is, it makes heavy use of "setattr". Anyone know a straightforward way to do "setattr" in C++...
8
1888
by: Steven D'Aprano | last post by:
I came across this unexpected behaviour of getattr for new style classes. Example: >>> class Parrot(object): .... thing = .... >>> getattr(Parrot, "thing") is Parrot.thing True >>>...
5
1354
by: szport | last post by:
There is an interesting skewness in python: class A(object): pass 17 But I can't write
4
3650
by: Emin | last post by:
Dear experts, I got some unexpected behavior in getattr and copy.deepcopy (see transcript below). I'm not sure if this is actually a bug in copy.deepcopy or if I'm doing something too magical...
0
1183
by: Nathan Harmston | last post by:
Hi, I m trying to implement an object which contains lazy" variables. My idea is to alter the getattr and the setattr methods. However I keep on getting a recursion error. My idea is that the...
6
4282
by: Donn Ingle | last post by:
Hi, Here's some code, it's broken: class Key( object ): def __init__(self): self.props = KeyProps() def __getattr__(self, v): return getattr( self.props,v ) def __setattr__(self,var,val):
0
1374
by: John Nagle | last post by:
Just noticed, again, that getattr/setattr are ASCII-only, and don't support Unicode. SGMLlib blows up because of this when faced with a Unicode end tag: File...
8
7922
by: Gregor Horvath | last post by:
Hi, class A(object): test = "test" class B(object): a = A() In : B.a.test
4
10455
by: maestro | last post by:
Why are these functions there? Is it somehow more idiomatic to use than to do obj.field ? Is there something you can with them that you can't by obj.field reference?
0
7223
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
7030
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7482
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4702
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1540
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
758
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
411
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.