jsonを返すクラスがあります
[{
'title': 'Test Blog Title 1',
'content': 'Blog Content',
'author_name': 'User 1'
},
{
'title': 'Test Blog Title 2',
'content': 'Blog Content 2',
'author_name': 'User 2'
}]
返されたJsonをもとにTastypie Model Resourceを作成したい
以下の URL を試してみましたが、動的にする必要があるフィールドを宣言したくありません
http://thehungrycoder.com/python/using-non-orm-data-sources-with-tastypie-in-django.html
class BlogResource(Resource):
#i dont want the fields below instead want it to be dynamic based on json
title = fields.CharField(attribute='title')
content = fields.CharField(attribute='content')
author = fields.CharField(attribute='author_name')
class Meta:
resource_name = 'blogs'