I have written a program in Python that draws some graphs using matplotlib and tkinter.
I would like to display that program on my web page for free usage.
How can I get this Python program to run on a web page?
I have written a program in Python that draws some graphs using matplotlib and
Share
You should check out mod_wsgi and one of the many web-packages in existence from the python community or build your own.
But you also need to understand that tkinter is a gui-library it will not run from the web, which it sounds like is what you want. But instead you could build a webinterface for your code, which shouldn’t be to hard if the presentation logic is well separated from the application-logic. That being said it’s definitely not an easy task if you’re new to programming in general or web-programming in particular.