我爲我的項目在python(2.7)中構建了一個推薦引擎但現在我想從HTML頁面讀取用戶的輸入,將此信息傳遞給python中的推薦引擎,並將結果顯示回HTML頁。有沒有更簡單的方法來實現這一點?如何將Python與前端HTML集成?
0
A
回答
0
1
此外,您可以嘗試使用例如Brython(https://brython.info/)或Sculpt(http://www.skulpt.org/)直接在網頁上運行推薦引擎(如JavaScript)。
0
可以使用實現了一個簡單的服務器使用WSGI類似這樣的例子
from wsgiref.simple_server import make_server
# Every WSGI application must have an application object - a callable
# object that accepts two arguments. For that purpose, we're going to
# use a function (note that you're not limited to a function, you can
# use a class for example). The first argument passed to the function
# is a dictionary containing CGI-style environment variables and the
# second variable is the callable object (see PEP 333).
def hello_world_app(environ, start_response):
status = '200 OK' # HTTP Status
headers = [('Content-type', 'text/plain')] # HTTP Headers
start_response(status, headers)
# The returned object is going to be printed
return ["Hello World"]
httpd = make_server('', 8000, hello_world_app)
print "Serving on port 8000..."
# Serve until process is killed
httpd.serve_forever()
0
相關問題
- 1. Python與HTML前端
- 2. Python在後端JS前端集成
- 3. 將Python驗證腳本與HTML集成
- 4. 如何將HTML頁面與Tikiwiki集成
- 5. 如何將Python與ASP.NET集成
- 6. 如何將Java類與Python集成?
- 7. 如何將JQGrid與Django/Python集成
- 8. 如何將前端和後端無縫自動集成
- 9. python html集成
- 10. Python/HTML集成
- 11. 將Python與R集成
- 12. 如何將OAuth2.0與OData客戶端代碼生成器集成?
- 13. Python後端與JS前端
- 14. 將Alfresco與我的自定義前端集成
- 15. 如何將版本控制方法與前端或非技術人員集成?
- 16. 前端集成測試
- 17. 如何將Python的Google雲端點與現有的GAE項目集成?
- 18. 如何將ClearCase客戶端CCRC 7.1與Cruise Control構建集成(java)集成?
- 19. 將Javascript MVC框架與後端集成
- 20. 將SAP與PHP後端集成
- 21. 將JOSSO與spring ws客戶端集成
- 22. 將Google AppEngine與胖客戶端集成
- 23. 將Google雲端硬盤與iOS集成
- 24. 將JavaScript與Java後端集成
- 25. 將SignalR與現有WebAPI端點集成
- 26. 在前端集成Extjs和在後端集成掛毯
- 27. 將html表單與paypal集成
- 28. 是否可以將html與asp.net集成?
- 29. React前端與Django REST後端的集成測試
- 30. Python Tkinter終端集成
您到目前爲止嘗試過了什麼?您所做的一些示例代碼將有助於我們向其提供輸入。 – serk