vote up 3 vote down star
1

In Javascript it would be:

var newObject = { 'propertyName' : 'propertyValue' };

How to do it in Python?

flag

the same syntax in python would create a dictionary, and that's not what I want – Jader Dias Oct 7 at 0:45
5  
Could you explain why you want what you're asking for? It might help folks guide you to better, more pythonic alternatives. – Jonathan Feinberg Oct 7 at 0:48
@coli I have a method that returns an object with some properties. In the case the method fails, I want to create this object manually. – Jader Dias Oct 7 at 0:50
1  
What does the caller do with this object? Why not have a class whose constructor fills in those properties? – Jonathan Feinberg Oct 7 at 0:56
@Jader - Why would the method fail? – Chris Lutz Oct 7 at 1:02
show 2 more comments

6 Answers

vote up 11 vote down check
obj = type('obj', (object,), {'propertyName' : 'propertyValue'})

there are two kinds of type function uses.

link|flag
2  
Well it's clever, but needlessly so, and obfuscatory. -1 – Jonathan Feinberg Oct 7 at 1:14
2  
how is this obfuscatory? it's a proper documented behaviour. – SilentGhost Oct 7 at 1:16
4  
Documented but obscure behavior. I'm pretty sure 99.9% of Python programmers' initial reaction to seeing this in real code would be "WTF!?". – Laurence Gonsalves Oct 7 at 1:22
5  
Actually, @Laurence, my reaction was, "Woah, I bet that creates a new instance of a made up 'obj' class that inherits from the object with a 'propertyName' member set to 'propertyValue' ." And what do you know? I was right! I don't think it's too unintuitive. – Chris Lutz Oct 7 at 1:27
4  
For completeness, to create an actual instance of the type instead of just a type object, this needs a trailing (): obj = type('obj', (object,), {'propertyName' : 'propertyValue'})() – Greg Hewgill Oct 7 at 1:41
show 12 more comments
vote up 0 vote down

It is easy in Python to declare a class with an __init__() function that can set up the instance for you, with optional arguments. If you don't specify the arguments you get a blank instance, and if you specify some or all of the arguments you initialize the instance.

I explained it here (my highest-rated answer to date) so I won't retype the explanation. But, if you have questions, ask and I'll answer.

If you just want a generic object whose class doesn't really matter, you can do this:

class Generic(object):
    pass

x = Generic()
x.foo = 1
x.bar = 2
x.baz = 3

An obvious extension would be to add an __str__() function that prints something useful.

This trick is nice sometimes when you want a more-convenient dictionary. I find it easier to type x.foo than x["foo"].

link|flag
vote up 0 vote down
class test:
    def __setattr__(self,key,value):
        return value


myObj = test()
myObj.mykey = 'abc' # set your property and value
link|flag
There is no need to define setattr, see Chris response – Jader Dias Oct 7 at 11:33
vote up 1 vote down

Peter's answer

obj = lambda: None
obj.propertyName = 'propertyValue'
link|flag
vote up 2 vote down

I like Smashery's idea, but Python seems content to let you modify classes on your own:

>>> class Inline(object):
...     pass
...
>>> obj = Inline()
>>> obj.test = 1
>>> obj.test
1
>>>

Works just fine in Python 2.5 for me. Note that you do have to do this to a class derived from object - it won't work if you change the line to obj = object.

link|flag
1  
Yep, you can do that - but for some strange reason, you just can't use object() - you have to create your own class. – Smashery Oct 7 at 1:02
1  
if you want an inline class, you can use obj = lambda: None, which is bizarre, but will perform the necessary tasks... – Peter Oct 7 at 1:04
@Peter - I didn't know that. However, now that I see it, I like SilentGhost's answer much better. – Chris Lutz Oct 7 at 1:08
I removed the constructor to show the shortest way to achieve it – Jader Dias Oct 7 at 1:18
@Jader - Fair enough. It looks better without it. – Chris Lutz Oct 7 at 1:21
show 1 more comment
vote up 7 vote down

I don't know if there's a built-in way to do it, but you can always define a class like this:

class InlineClass(object):
    def __init__(self, dict):
	self.__dict__ = dict

obj = InlineClass({'propertyName' : 'propertyValue'})
link|flag
Interesting! (stupid min char comment limit) – Jader Dias Oct 7 at 0:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.