Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread Dotan Cohen
Thanks, all, I have subscribed to the Dabo list and I will almost certainly bug both lists in the near future. Thank you! -- Dotan Cohen http://what-is-what.com http://gibberish.co.il ___ Tutor maillist - Tutor@python.org To unsubscribe or change sub

Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread Alan Gauld
"RĂ¼diger Wolf" wrote 1) GUI with several input areas which are analogous to the HTML Select, Input=Text, and Textarea fields. 3) Retrieve and display data from the database using predefined queries. EasyGUI makes it simple to add GUI to python app. http://easygui.sourceforge.net/ EasyGui m

Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread Wayne
On Mon, Oct 12, 2009 at 7:17 AM, Dotan Cohen wrote: > I have a simple PHP web application with a form, which enter the > information entered into the form into a database. However, I will be > several weeks without internet access so I now have two choices: > > 1) Run the script locally on my Kub

Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread Alan Gauld
"John" wrote 1) GUI with several input areas which are analogous to the HTML Select, Input=Text, and Textarea fields. 2) insert the data collected into an sqlite database 3) Retrieve and display data from the database using predefined queries. I am familiar with the SQL language, some PHP and

Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread John
On Monday 12 October 2009 05:17:16 am Dotan Cohen wrote: > I have a simple PHP web application with a form, which enter the > information entered into the form into a database. However, I will be > several weeks without internet access so I now have two choices: > > 1) Run the script locally on my

Re: [Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread RĂ¼diger Wolf
On Mon, 12 Oct 2009 14:17 +0200, "Dotan Cohen" wrote: > I prefer the second route, but I want to know if this seems reasonable > in Python: > 1) GUI with several input areas which are analogous to the HTML > Select, Input=Text, and Textarea fields. > 2) insert the data collected into an sqlite dat

[Tutor] Porting PHP web app to Python GUI

2009-10-12 Thread Dotan Cohen
I have a simple PHP web application with a form, which enter the information entered into the form into a database. However, I will be several weeks without internet access so I now have two choices: 1) Run the script locally on my Kubuntu box 2) Port it to Python and make a real app out of it. I