我正在使用Django 1.11。在view.py文件中,我正在调用一个子进程,如下所示:def twitter_trend(request): output = call("python /home/imsaiful/PiroProject/pironews/feed/twitter/trends.py", shell=True) print(output) return HttpResponse(output, content_type='text/plain')我的trends.py文件在下面给出,该过程正在调用import osdef sum(): print("hello world") a = 5 b = 3 return a+bif __name__ == '__main__': sum()当我调用此文件时,它通过HTTP响应返回0。如何在HttpResponse中返回a + b的加法?
添加回答
举报
0/150
提交
取消