简体   繁体   English

使用python的灵活类名(使用py2neo元类)

[英]flexible class name using python (py2neo Metaclasses used)

Until now i have not found the answer to this question (more a general Python question than explicite for py2neo) I want to be able to call py2neo classes flexible: 到现在为止,我还没有找到这个问题的答案(比py2neo的显式表达式更常见的Python问题),我希望能够灵活地调用py2neo类:

class foo1(GraphObject):
    __primarykey__ = "bar"
    bar = Property()
    foobar = RelatedTo("foo1")
    foobar2 = RelatedTo("foo1")

class foo2(GraphObject):
    __primarykey__ = "bar"
    bar = ""
    foobar = RelatedTo("foo2")
    foobar2 = RelatedTo("foo2")

def flexiblefoocreate(classname,newbar):
    #classname is "foo1" or "foo2"
    tempvar=classname()
    tempvar.bar=newbar

def flexiblefoobaradding(classname,startbar,foobarname,endbar)
    #classname is "foo1" or "foo2"
    #foobarname is "foobar" or "foobar2"
    startfoo=classname()
    startfoo.bar=startbar
    endfoo=classname()
    endfoo.bar=endbar
    startfoo.foobarname.add(endfoo)

How can I get this working? 我该如何工作?

background: Later on easy adding/using of properties 背景:稍后轻松添加/使用属性

You can use metaclasses: 您可以使用元类:

class Foo1(object):
    def d1(self):
        print(self, ".d1")


class Foo2(object):
    def d2(self):
        print(self, ".d2")


def make_class(base):
    return type(str(base), (base,), {})


MyExtraordinarilyNamedFoo1Class = make_class(Foo1)
MySimpleFoo2Class = make_class(Foo2)

foo1 = MyExtraordinarilyNamedFoo1Class()
foo2 = MySimpleFoo2Class()

foo1.d1()
foo1.new_attr = 1
print(foo1.new_attr)

foo2.d2()
foo2.new_attr = 2
print(foo2.new_attr)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM