直接生成Django-REST-API?

时间:2017-12-13 23:20:23

标签: python django api django-rest-framework models

我已经有一个包含100个表的数据库。

现在,我想将其公开为REST-API。

我之前已经这样做了,所以我熟悉这个程序。 我为模型创建了一个序列化程序,为Serialiizer创建了一个ViewSet,并为路由器创建了一个。 我在2张桌子上测试它,它的工作原理。

问题是我想要公开我的所有100个表。做100次相同的操作并不好玩。

有没有办法只做一次?

1 个答案:

答案 0 :(得分:0)

似乎在django中没有办法这样做。

  

现在,这不是最好的解决方案,

     

有时,不同的SERIALIZERS课程需要依赖关系

我刚创建了一个有效的脚本:

您只需要将您的应用名称作为参数从项目目录中运行

`import os
import sys

ROUTER_TEMPLATE = "router.register(r'{}', views.{}ViewSet)"
SERIALIZER_TEMPLATE = """
class {}Serializer(serializers.HyperlinkedModelSerializer):

    class Meta:
        model = {}
        fields = '__all__'
"""
VIEW_TEMPLATE= """

class {}ViewSet(viewsets.ModelViewSet):
    queryset = {}.objects.all()
    serializer_class = {}Serializer


"""

def gen_api(app_name):
        models= open(app_name+'/models.py', 'r')
    aLines = models.readlines()

    for sLine in aLines:

        aLine = sLine.split()

        for sWord in aLine:

            if sWord == "class" and aLine[aLine.index(sWord)+1] != "Meta:":
                model_name= aLine[aLine.index(sWord)+1].split("(")[0]
                gen(app_name,model_name )




def gen(app_name, name):

    config = open(app_name+'/urls.py', 'a') #append
    config.write("\n"+ ROUTER_TEMPLATE.format(name, name))
    config.close()

    config = open(app_name+'/serializers.py', 'a') #append
    config.write("\n"+ SERIALIZER_TEMPLATE.format(name, name))
    config.close()

    config = open(app_name+'/views.py', 'a') #append
    config.write("\n"+ VIEW_TEMPLATE.format(name, name, name))
    config.close()

if __name__ == "__main__":

    gen_api(sys.argv[1])
`