[Answer]-Call python script from html page

1👍

  1. No, you don’t need a web framework, but in general it’s a good idea. Django seems like brutal overkill for this. CherryPy or Pyramid or some micro framework seems better.

  2. You can have an HTML page that calls the CherryPy server, but since this page obviously is a part of the system/service you are building, serving it from the server makes more sense.

  3. Sure, why not.

Leave a comment