Re: [ANN] EasyGUI_Qt version 0.9

2015-01-14 Thread stephen . boulet
On Tuesday, January 13, 2015 at 8:30:13 PM UTC, André Roberge wrote: > On Tuesday, 13 January 2015 08:23:30 UTC-4, stephen...@gmail.com wrote: > > I found a solution that I'm happy with. > > > > from datetime import datetime > > from easygui_qt import * > > > > datestring = get_date() > > mydate

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-13 Thread André Roberge
On Tuesday, 13 January 2015 08:23:30 UTC-4, stephen...@gmail.com wrote: > I found a solution that I'm happy with. > > from datetime import datetime > from easygui_qt import * > > datestring = get_date() > mydate = datetime.strptime(datestring, '%b %d %Y') I'm thinking of having the new version

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-13 Thread stephen . boulet
I found a solution that I'm happy with. from datetime import datetime from easygui_qt import * datestring = get_date() mydate = datetime.strptime(datestring, '%b %d %Y') On Saturday, January 10, 2015 at 1:02:30 AM UTC, André Roberge wrote: > On Friday, 9 January 2015 19:09:15 UTC-4, stephen...@g

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-10 Thread Chris Warrick
On Sat, Jan 10, 2015 at 2:02 AM, André Roberge wrote: > On Friday, 9 January 2015 19:09:15 UTC-4, stephen...@gmail.com wrote: >> One issue is the format returned for the calendar selection. For today, the >> string returned is "Fri Jan 9 2015". My script needs to convert the date to >> a dateti

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-09 Thread André Roberge
On Friday, 9 January 2015 19:09:15 UTC-4, stephen...@gmail.com wrote: > On Wednesday, December 31, 2014 at 4:24:50 PM UTC-6, André Roberge wrote: > > EasyGUI_Qt version 0.9 has been released. This is the first announcement > > about EasyGUI_Qt on this list. > > > > Like the original EasyGUI (wh

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-09 Thread André Roberge
On Friday, 9 January 2015 19:09:15 UTC-4, stephen...@gmail.com wrote: > Very nice, thanks. > > One issue is the format returned for the calendar selection. For today, the > string returned is "Fri Jan 9 2015". My script needs to convert the date to a > datetime.date, and having the month retur

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-09 Thread stephen . boulet
On Wednesday, December 31, 2014 at 4:24:50 PM UTC-6, André Roberge wrote: > EasyGUI_Qt version 0.9 has been released. This is the first announcement > about EasyGUI_Qt on this list. > > Like the original EasyGUI (which used Tkinter), > EasyGUI_Qt seeks to provide simple GUI widgets > that can b

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-03 Thread Michael Torrie
On 01/03/2015 10:11 AM, André Roberge wrote: > Would you care to elaborate? All the code I have written works > correctly on all the tests I have done. I do have reports from a > user using a Mac with Python 2.7 for which some widgets did not quite > work properly ... but that's all I have heard

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-03 Thread Mark Lawrence
On 03/01/2015 17:11, André Roberge wrote: On Saturday, 3 January 2015 04:52:21 UTC-4, wxjm...@gmail.com wrote: Le vendredi 2 janvier 2015 20:11:25 UTC+1, André Roberge a écrit : On Friday, 2 January 2015 06:29:37 UTC-4, wxjm...@gmail.com wrote: Le mercredi 31 décembre 2014 23:24:50 UTC+1, An

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-03 Thread André Roberge
On Saturday, 3 January 2015 04:52:21 UTC-4, wxjm...@gmail.com wrote: > Le vendredi 2 janvier 2015 20:11:25 UTC+1, André Roberge a écrit : > > On Friday, 2 January 2015 06:29:37 UTC-4, wxjm...@gmail.com wrote: > > > Le mercredi 31 décembre 2014 23:24:50 UTC+1, André Roberge a écrit : > > > > EasyG

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread André Roberge
On Friday, 2 January 2015 16:22:21 UTC-4, Emil Oppeln-Bronikowski wrote: > On Fri, Jan 02, 2015 at 11:53:26AM -0800, André Roberge wrote: > > How could it then be used? > > Maybe I failed to explain myself fully. What I meant to say is building a > distribution-ready program that utilizes your l

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread Emil Oppeln-Bronikowski
On Fri, Jan 02, 2015 at 11:53:26AM -0800, André Roberge wrote: > How could it then be used? Maybe I failed to explain myself fully. What I meant to say is building a distribution-ready program that utilizes your library; not your library being turn into a executable. Or maybe something is going

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread André Roberge
On Friday, 2 January 2015 15:22:22 UTC-4, Emil Oppeln-Bronikowski wrote: > On Fri, Jan 02, 2015 at 11:11:05AM -0800, André Roberge wrote: > > Sorry if this was asked before: have you tried building a portable version > using py2exe/Nuitka/etc? I always hit a wall when it comes to building > aga

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread Emil Oppeln-Bronikowski
On Fri, Jan 02, 2015 at 11:11:05AM -0800, André Roberge wrote: Sorry if this was asked before: have you tried building a portable version using py2exe/Nuitka/etc? I always hit a wall when it comes to building against huge libraries like Python-Qt. -- People are like potatos. They die when you

Re: [ANN] EasyGUI_Qt version 0.9

2015-01-02 Thread André Roberge
On Friday, 2 January 2015 06:29:37 UTC-4, wxjm...@gmail.com wrote: > Le mercredi 31 décembre 2014 23:24:50 UTC+1, André Roberge a écrit : > > EasyGUI_Qt version 0.9 has been released. This is the first announcement > > about EasyGUI_Qt on this list. snip > I toyed and I spent a couple of hours w

[ANN] EasyGUI_Qt version 0.9

2014-12-31 Thread André Roberge
EasyGUI_Qt version 0.9 has been released. This is the first announcement about EasyGUI_Qt on this list. Like the original EasyGUI (which used Tkinter), EasyGUI_Qt seeks to provide simple GUI widgets that can be called in a procedural program. EasyGUI_Qt is NOT event-driven: all GUI interactio