将字符串转换为另一个Python类

时间:2013-08-28 14:40:08

标签: python rest google-app-engine google-cloud-datastore

无论如何要为模型创建另一个类吗?

例如,我有model.py,其中一个类包含:

class Customers(ndb.Model):
  lastname = ndb.StringProperty()
  firstname = ndb.StringProperty()
  license = ndb.StringProperty()
  birthdate = ndb.DateProperty()
  remarks = ndb.TextProperty()

我知道我可以使用dir(model)获取模型,并输出如下内容:

['Customers', 'CustomerAddresses','Whatever','__builtins__', '__doc__', '__file__', '__name__', '__package__', 'ndb']

但是,有什么方法可以在dir(model)中使用这些字符串来自动生成另一个类,例如:

class RestCustomers(webapp2.RequestHandler):
  #some code that gets the model class attributes and displays the json string 
  customers = # customer attributes from model
  self.response.headers['Content-Type'] = "application/json"
  self.response.write(json.dumps(customers))

我不确定它是否可行,但有点像javascript的工作方式,其中你说的是

var models = dir(models); // which is an array
var class = "Rest"+models[0];

或类似的......

2 个答案:

答案 0 :(得分:2)

尝试这样的事情:

from google.appengine.ext.ndb import metadata
class RestCustomers(webapp2.RequestHandler):
    customers = metadata.get_properties_of_kind(Customers)
    self.response.headers['Content-Type'] = "application/json"
    self.response.write(json.dumps(customers))

有关详细信息,请参阅documentation about metadata。我不完全确定get_properties_of_kind期望如何得到kind参数,所以试试看。

答案 1 :(得分:0)

您可以使用:

self.__setattr__(variable_name, value)

...尝试这样的事情。虽然我不确定你想要什么。我不认为你知道你想要什么;)通常如果你必须像这样一起破解某些东西,你的想法/设计是不正确的。

class NewClass:
    def __init__(self, inherits):
        for k, v in inherits.__dict__.items():
            self.__setattr__(k, v)