How do I run a python program from an internet address?

Steven D'Aprano steve+comp.lang.python at pearwood.info
Mon May 7 20:11:33 EDT 2012


On Mon, 07 May 2012 16:20:35 -0700, Albert wrote:

> I have a small text based python program that I want to make available
> to people who might be behind a firewall or can't install python on
> their office computers, but can access the internet.  It is just an
> algorithm that makes a handful of straightforward calculations on some
> input that the user provides and spits out some text as output that they
> might want to print out on a printer.  I can program python on my local
> machine, but don't know how to make the code accessible from a browser.
> 
> What would be the best way to figure out how to do this?

Try googling "python web app how to". For example, the very first link 
found here:

https://duckduckgo.com/html/?q=python%20web%20app%20how%20to

is an introduction to making Python applications available to run over 
the Internet.



-- 
Steven



More information about the Python-list mailing list