Re: Server side newbie

2006-02-03 Thread jimlewis
Can you point me to sample code somewhere? If I had a server-side python script that increments the number in an edit control on clicking a button, I think I could take it from there. -- http://mail.python.org/mailman/listinfo/python-list

Re: Server side newbie

2006-02-03 Thread Paul Rubin
[EMAIL PROTECTED] writes: Can you point me to sample code somewhere? If I had a server-side python script that increments the number in an edit control on clicking a button, I think I could take it from there. Oh man, I hate to say this since it's not a good situation, but what you're asking

Re: Server side newbie

2006-02-03 Thread Ravi Teja
swisscheese wrote: I have a simple python desktop app with several edit controls and a couple of buttons. It just does some math. What's the simplest way to make it a server-side app so visitors to my site can run the app via their browser? If the math is simple, you can just use JavaScript.

Re: Server side newbie

2006-02-03 Thread jimlewis
Thanks but the math is a bit complex and already coded and debugged in a python desktop gui. -- http://mail.python.org/mailman/listinfo/python-list

Re: Server side newbie

2006-01-30 Thread Paul Rubin
[EMAIL PROTECTED] writes: Someone should invent a way to automate all this. My python app fully describes the UI and behaviour so it seems possible. Or at least the sites should learn how to write to a broader audience so they can be understood by newbies. Here's hoping for an easier future

Re: Server side newbie

2006-01-30 Thread jimlewis
Thanks for the various replies. They all seem to lead to a lot more learning. I thought Python was supposed to make it easy to build web apps. It appears after going thru the learning curve for Python I need to learn unix, a framework, brush up on HTML and so on. It's like being caught in a spider

Re: Server side newbie

2006-01-30 Thread Peter Hansen
[EMAIL PROTECTED] wrote: Thanks for the various replies. They all seem to lead to a lot more learning. I thought Python was supposed to make it easy to build web apps. It appears after going thru the learning curve for Python I need to learn unix, a framework, brush up on HTML and so on. It's

Re: Server side newbie

2006-01-30 Thread jimlewis
Thanks for the comments. I do know basic HTML although it seems like writing in assembly language. Filling in the blanks you outlined: my ISP is pair.com and they show python as available. My site is quirkle.com. True I did not think much about hooking my app to the web but I had, I think, a

Re: Server side newbie

2006-01-30 Thread Peter Hansen
[EMAIL PROTECTED] wrote: Thanks for the comments. I do know basic HTML although it seems like writing in assembly language. Filling in the blanks you outlined: my ISP is pair.com and they show python as available. My site is quirkle.com. True I did not think much about hooking my app to the

Server side newbie

2006-01-29 Thread swisscheese
I have a simple python desktop app with several edit controls and a couple of buttons. It just does some math. What's the simplest way to make it a server-side app so visitors to my site can run the app via their browser? -- http://mail.python.org/mailman/listinfo/python-list

Re: Server side newbie

2006-01-29 Thread Dave
Check out mod_python for Apache. Basically, you would write your python app as a server-side script and the end user would interact with your code via a webpage. It's likely that you won't need any GUI code you wrote, as HTML form elements will be your choices in the browser. Check out PSP: it

Re: Server side newbie

2006-01-29 Thread Peter Hansen
swisscheese wrote: I have a simple python desktop app with several edit controls and a couple of buttons. It just does some math. What's the simplest way to make it a server-side app so visitors to my site can run the app via their browser? There will probably be a dozen answers, any of which

Re: Server side newbie

2006-01-29 Thread Pierre Quentel
swisscheese a écrit : I have a simple python desktop app with several edit controls and a couple of buttons. It just does some math. What's the simplest way to make it a server-side app so visitors to my site can run the app via their browser? Among the many web frameworks for Python,

Re: Server side newbie

2006-01-29 Thread John M. Gabriele
swisscheese wrote: I have a simple python desktop app with several edit controls and a couple of buttons. It just does some math. What's the simplest way to make it a server-side app so visitors to my site can run the app via their browser? The *simplest* way is to make it into a CGI