Re: I look for a package to make some simple console "form"

2012-04-02 Thread J. Cliff Dyer
You might look into formencode. It basically takes the philosophy that a form is nothing more and nothing less than an interface between user input and python data. It doesn't make assumptions about how you present the form to the user. It just handles validation and conversion of that data into

Re: I look for a package to make some simple console "form"

2012-04-02 Thread Stephane Klein
Le 02/04/2012 16:52, Jean-Michel Pichavant a écrit : Stéphane Klein wrote: Le 02/04/2012 15:54, Jean-Michel Pichavant a écrit : Stéphane Klein wrote: Hi, I look for a package to make some console "form". It's a standard stuff, I think there are a package to do that. Example : What is your

Re: I look for a package to make some simple console "form"

2012-04-02 Thread Jean-Michel Pichavant
Stéphane Klein wrote: Le 02/04/2012 15:54, Jean-Michel Pichavant a écrit : Stéphane Klein wrote: Hi, I look for a package to make some console "form". It's a standard stuff, I think there are a package to do that. Example : What is your name ? Select your lang [EN, FR, DE…] ? Do you want …

Re: I look for a package to make some simple console "form"

2012-04-02 Thread Grant Edwards
On 2012-04-02, St?phane Klein wrote: > Le 02/04/2012 15:54, Jean-Michel Pichavant a ?crit : >> St?phane Klein wrote: >>> >>> I look for a package to make some console "form". >>> >>> It's a standard stuff, I think there are a package to do that. >>> >>> Example : >>> >>> What is your name ? >>> Se

Re: I look for a package to make some simple console "form"

2012-04-02 Thread Stéphane Klein
Le 02/04/2012 15:54, Jean-Michel Pichavant a écrit : Stéphane Klein wrote: Hi, I look for a package to make some console "form". It's a standard stuff, I think there are a package to do that. Example : What is your name ? Select your lang [EN, FR, DE…] ? Do you want … [Y, N] ? Type of field

Re: I look for a package to make some simple console "form"

2012-04-02 Thread Jean-Michel Pichavant
Stéphane Klein wrote: Hi, I look for a package to make some console "form". It's a standard stuff, I think there are a package to do that. Example : What is your name ? Select your lang [EN, FR, DE…] ? Do you want … [Y, N] ? Type of field : * textline * select choice * boolean question Tha