如何在HTML文件中调用Python脚本?

时间:2016-10-13 15:22:20

标签: python django html5 django-models

我正在使用HTML5,Django,Python 3.4

1)我希望使用Javascript / Jquery / AJAX / DJANGO / Anyshitstuff在html5文档中调用2个python脚本

码(pyscript.py)=

print("Hello everyone")

请注意名为templates

的同一目录中的文件pyscript.pymywebpage.html r

2)我想在另一个python脚本中调用一个python脚本,我该怎么做?

1.py

a=5

2.py

//here i include python script that is 1.py then
print(a)

1 个答案:

答案 0 :(得分:1)

你不能这样做(在HTML5中调用python脚本) 但是你可以使用Javascript,AJAX

来做到这一点

How do you execute a server-side Python script using jQuery?