I wrote a python script and when I run it, it outputs what I want, so I know that it is working. Now I want to be able to put the output of the code on my website and I have no idea how to do this, or even where to begin for that matter. Thanks!
Outputting my python code to a webpage
Collapse
X
-
you have multiple options. the first is export the output to a html file and place that in the web document root. another is a wrapper in for example php where you call the script and use the output.
The last option I can think of is run python code with for example cherrypy. Could you be more specific?
Comment