Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Menno Holscher
Op 15-06-2021 om 19:14 schreef Grant Edwards: On 2021-06-15, Menno Holscher wrote: There is no difference regarding security concerns. I find that hard to believe given the long list of CVEs I've just had to sort through for even fairly recent versions of PHP. I just can't belive that

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Grant Edwards
On 2021-06-15, Menno Holscher wrote: > There is no difference regarding security concerns. I find that hard to believe given the long list of CVEs I've just had to sort through for even fairly recent versions of PHP. I just can't belive that Python has anywhere close to that many secruity

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Menno Holscher
Op 14-06-2021 om 21:17 schreef Pascal B via Python-list: Hi, I would like to know if for a small app for instance that requires a connection to a remote server database if php is more suitable than Python mainly regarding security. Php requires one port for http and one port for the connection

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Tomasz Rola
On Tue, Jun 15, 2021 at 08:39:51AM +1200, dn via Python-list wrote: > On 15/06/2021 07.17, Pascal B via Python-list wrote: > > Hi, > > I would like to know if for a small app for instance that requires a > > connection to a remote server database if php is more suitable than Python > > mainly

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-14 Thread dn via Python-list
On 15/06/2021 07.17, Pascal B via Python-list wrote: > Hi, > I would like to know if for a small app for instance that requires a > connection to a remote server database if php is more suitable than Python > mainly regarding security. > Php requires one port for http and one port for the

Php vs Python gui (tkinter...) for small remote database app

2021-06-14 Thread Pascal B via Python-list
Hi, I would like to know if for a small app for instance that requires a connection to a remote server database if php is more suitable than Python mainly regarding security. Php requires one port for http and one port for the connection to the database open. If using Python with a tkinter gui,

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2020-02-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm fairly sure support for .pyw, or rather a separate python executable, was introduced in the MacOSX port. In particular, we started out with two different executables "python" and "pythonw" where the first was the regular python executable, while the

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2020-02-28 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR. I believe there also used to be a distinction between .py and .pyw files back in the distant past of classic MacOS (9 and earlier) and limited support for .pyw was carried over into Mac OS X (10). But most of the references to .pyw for macOS

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2020-02-28 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: I might have missed something, but I thought .pyw files were a Windows specific thing. -- nosy: +erlendaasland ___ Python tracker

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2020-01-10 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2019-04-03 Thread Jiongjiong Gao
Change by Jiongjiong Gao : -- keywords: +patch pull_requests: +12600 stage: -> patch review ___ Python tracker ___ ___

[issue36516] Python Launcher can not recognize pyw file as Python GUI Script file type correctly.

2019-04-03 Thread Jiongjiong Gao
New submission from Jiongjiong Gao : In Python Launcher Preferences there are two settings for file type, Python Script and Python GUI Script. But Python Launcher can not recognize pyw file as Python GUI Script file type correctly. -- components: macOS messages: 339380 nosy: gjj2828

Re: Python GUI application embedding a web browser - Options?

2017-12-13 Thread yuriv1127
On Wednesday, October 19, 2016 at 3:08:15 AM UTC-7, Paul Moore wrote: > I'm looking to write a GUI application in Python (to run on Windows, using > Python 3.5). The application is just a relatively thin wrapper around a > browser - it's presenting an existing web application, just in its own

Re: Python GUI application embedding a web browser - Options?

2017-10-10 Thread Paul Moore
On 10 October 2017 at 16:07, oliver wrote: > Can you elaborate what is not sufficient with Qt's web components? I can't, sorry. Douglas was resurrecting a thread from a year ago. At the time I was trying to do a quick proof of concept project and asked for help on

Re: Python GUI application embedding a web browser - Options?

2017-10-10 Thread oliver
Can you elaborate what is not sufficient with Qt's web components? http://doc.qt.io/qt-5/topics-web-content.html. This allows for HTML, CSS, Javascript, via either native C++ Qt, QML, or Python (PyQt) or mixtures of these 3. That said, I have not yet used Qt`s web engine so I don`t know how

Re: Python GUI application embedding a web browser - Options?

2017-10-09 Thread fpp
Paul Moore said : > On 9 October 2017 at 04:25, wrote: >> Did you find out the answer for that? > > Nothing much beyond the pointer to PyQt (which basically said "a lot > of the info on the web is out of date" so I should check the latest > docs).

Re: Python GUI application embedding a web browser - Options?

2017-10-09 Thread Paul Moore
On 9 October 2017 at 04:25, wrote: > Did you find out the answer for that? Nothing much beyond the pointer to PyQt (which basically said "a lot of the info on the web is out of date" so I should check the latest docs). I didn't take it much further, though, as it was a

Re: Python GUI application embedding a web browser - Options?

2017-10-08 Thread douglashf . mec
Did you find out the answer for that? -- https://mail.python.org/mailman/listinfo/python-list

python/gui question

2017-03-09 Thread Xristos Xristoou
i want to create a very simple python plugin using QT designer but i an not sure how to connect my variable from gui to my python script. my gui is simple have only one lineEdit and ok or cancel. in the gui (widget): 20 90 171 31 def run(self):

Re: Python GUI application embedding a web browser - Options?

2016-10-19 Thread Paul Moore
On Wednesday, 19 October 2016 13:54:09 UTC+1, Mark Summerfield wrote: > > Since the application is a web app have you looked at: > https://github.com/r0x0r/pywebview + https://github.com/dddomodossola/remi > or at > https://flexx.readthedocs.io/en/stable/ > These basically wrap the platform's web

Re: Python GUI application embedding a web browser - Options?

2016-10-19 Thread Mark Summerfield
On Wednesday, October 19, 2016 at 11:08:15 AM UTC+1, Paul Moore wrote: > I'm looking to write a GUI application in Python (to run on Windows, using > Python 3.5). The application is just a relatively thin wrapper around a > browser - it's presenting an existing web application, just in its own

Re: Python GUI application embedding a web browser - Options?

2016-10-19 Thread Paul Moore
On 19 October 2016 at 12:10, Phil Thompson wrote: > The Chrome-based QWebEngineView (http://doc.qt.io/qt-5/qwebengineview.html) > is fully supported by PyQt. Nice. Thanks for the pointer. Looks like the various bits of advice I found on the web are a little out of

Re: Python GUI application embedding a web browser - Options?

2016-10-19 Thread Vincent Vande Vyvre
Le 19/10/2016 à 12:07, Paul Moore a écrit : I'm looking to write a GUI application in Python (to run on Windows, using Python 3.5). The application is just a relatively thin wrapper around a browser - it's presenting an existing web application, just in its own window rather than in a

Re: Python GUI application embedding a web browser - Options?

2016-10-19 Thread Phil Thompson
On 19 Oct 2016, at 11:07 am, Paul Moore wrote: > > I'm looking to write a GUI application in Python (to run on Windows, using > Python 3.5). The application is just a relatively thin wrapper around a > browser - it's presenting an existing web application, just in its own

Python GUI application embedding a web browser - Options?

2016-10-19 Thread Paul Moore
I'm looking to write a GUI application in Python (to run on Windows, using Python 3.5). The application is just a relatively thin wrapper around a browser - it's presenting an existing web application, just in its own window rather than in a standard browser window. I'm looking for advice on a

Re: writing to command line thru python gui

2016-04-02 Thread Ned Batchelder
On Saturday, April 2, 2016 at 1:20:52 PM UTC-4, Thomas 'PointedEars' Lahn wrote: > A. ElKader wrote: > > > I posted this question, no reply : > > > > Any advice : > > > > http://unix.stackexchange.com/questions/273573/write-to-terminal-in-tkinter-gui > > I do not think that this

Re: writing to command line thru python gui

2016-04-02 Thread Thomas 'PointedEars' Lahn
A. ElKader wrote: > I posted this question, no reply : > > Any advice : > > http://unix.stackexchange.com/questions/273573/write-to-terminal-in-tkinter-gui I do not think that this newsgroup/mailing list is meant as an advertisement board to get your questions answered on Q forums on the Web,

writing to command line thru python gui

2016-04-01 Thread A. ElKader
I posted this question, no reply : Any advice : http://unix.stackexchange.com/questions/273573/write-to-terminal-in-tkinter-gui -- https://mail.python.org/mailman/listinfo/python-list

Re: Python GUI?

2014-06-02 Thread vidarwilliam
I don't like it when you can DD to position things. I don't understand why someone wouldn't want to write the positioning code, and have fun with the debugging. That's the best part about writing a program, in my opinion. I'm against DD with programming, and I'm not sure why. I don't

Re: Idle thread (Polling) python GUI and saving program state

2014-03-04 Thread MRAB
On 2014-03-04 02:41, Rolando wrote: On Monday, March 3, 2014 6:06:22 PM UTC-8, MRAB wrote: On 2014-03-04 01:33, Rolando wrote: I have a GUI with a bunch of cells which is my View in the MVC design. The user enters some information in the view and I pass this on to the model so that

Idle thread (Polling) python GUI and saving program state

2014-03-03 Thread Rolando
I have a GUI with a bunch of cells which is my View in the MVC design. The user enters some information in the view and I pass this on to the model so that using the information entered by the user it(model) can do some processing. I have coded up my model as a state machine. Wherein, once a

Re: Idle thread (Polling) python GUI and saving program state

2014-03-03 Thread MRAB
On 2014-03-04 01:33, Rolando wrote: I have a GUI with a bunch of cells which is my View in the MVC design. The user enters some information in the view and I pass this on to the model so that using the information entered by the user it(model) can do some processing. I have coded up my

Re: Idle thread (Polling) python GUI and saving program state

2014-03-03 Thread Rolando
On Monday, March 3, 2014 6:06:22 PM UTC-8, MRAB wrote: On 2014-03-04 01:33, Rolando wrote: I have a GUI with a bunch of cells which is my View in the MVC design. The user enters some information in the view and I pass this on to the model so that using the information entered by

Re: Python GUI?

2013-09-20 Thread Metallicow
On Wednesday, September 11, 2013 3:55:59 PM UTC-5, Eamonn Rea wrote: There are a few known GUI toolkits out there, and the main ones from what I can tell are: Tkinter -- Simple to use, but limited PyQT -- You have a GUI designer, so I'm not going to count that PyGTK -- Gnome

Re: Python GUI?

2013-09-20 Thread Michael Torrie
On 09/20/2013 12:34 PM, Metallicow wrote: I prefer wx over qt for these reasons. Robin works for qt now. *Funny isn't it...* Basically, To change qt(PySide) you need to pretty much need to be employed by qt, not the case with wx(is not a *For profit*, but you can donate.). In my opinion, in

Re: Python GUI?

2013-09-20 Thread Metallicow
Sorry about that, nokia is/was. qt was developed(IIRC) for phones. Someone made money. And a lot of it. wx is a more or less a free project. I don't use a phone anymore. If I had a touch screen phone and was a developer, I still wouldn't use one. I have my many reasons why... --

Re: Python GUI?

2013-09-20 Thread Michael Torrie
On 09/20/2013 01:58 PM, Metallicow wrote: Sorry about that, nokia is/was. qt was developed(IIRC) for phones. Someone made money. And a lot of it. wx is a more or less a free project. I don't use a phone anymore. If I had a touch screen phone and was a developer, I still wouldn't use one. I

Re: Python GUI?

2013-09-20 Thread Robert Kern
On 2013-09-20 19:34, Metallicow wrote: I prefer wx over qt for these reasons. Robin works for qt now. *Funny isn't it...* Lying about someone's employment is not very funny. Robin does not work for Qt or even Digia, the nearest thing to a corporate owner of Qt these days.

Re: Python GUI?

2013-09-18 Thread Michael Torrie
On 09/17/2013 10:19 AM, Benjamin Kaplan wrote: Sure. Every platform provides its own GUI library (Cocoa on Mac OS X, Win32 on Windows). Other programs that want to hook into yours, such as screen readers, are familiar with the platform's native GUI elements- it knows what a Win32 combo box is,

Re: Python GUI?

2013-09-18 Thread llanitedave
On Friday, September 13, 2013 10:31:17 AM UTC-7, Eamonn Rea wrote: I don't like the idea of being able to drag and drop anything in the programming world. Outside of that, I use DD programs a lot. I got into GUI programming because I thought that I could get away from them, but I guess not.

Re: Python GUI?

2013-09-17 Thread rusi
On Thursday, September 12, 2013 10:21:49 PM UTC+5:30, Benjamin Kaplan wrote: The main difference between wx and qt is that qt looks native on every platform while wx *is* native on every platform (it uses native controls wherever possible). This means that wx integrates into the OS better,

Re: Python GUI?

2013-09-17 Thread Benjamin Kaplan
On Tue, Sep 17, 2013 at 7:55 AM, rusi rustompm...@gmail.com wrote: On Thursday, September 12, 2013 10:21:49 PM UTC+5:30, Benjamin Kaplan wrote: The main difference between wx and qt is that qt looks native on every platform while wx *is* native on every platform (it uses native controls

Re: Python GUI?

2013-09-17 Thread rusi
On Tuesday, September 17, 2013 9:49:28 PM UTC+5:30, Benjamin Kaplan wrote: On Tue, Sep 17, 2013 at 7:55 AM, rusi wrote: On Thursday, September 12, 2013 10:21:49 PM UTC+5:30, Benjamin Kaplan wrote: The main difference between wx and qt is that qt looks native on every platform

Re: Python GUI?

2013-09-17 Thread Benjamin Kaplan
On Tue, Sep 17, 2013 at 9:51 AM, rusi rustompm...@gmail.com wrote: On Tuesday, September 17, 2013 9:49:28 PM UTC+5:30, Benjamin Kaplan wrote: On Tue, Sep 17, 2013 at 7:55 AM, rusi wrote: On Thursday, September 12, 2013 10:21:49 PM UTC+5:30, Benjamin Kaplan wrote: The main difference

Re: Python GUI?

2013-09-15 Thread Dave Cook
On 2013-09-14, Wolfgang Keller felip...@gmx.net wrote: If much of the code for a GUI is boiler-plate, busy-code etc. than I would suggest that the framework is not really as efficient as it should be. There are very few Python GUI frameworks as such. They are almost all just toolkits

Re: Python GUI?

2013-09-14 Thread eamonnrea
On Saturday, September 14, 2013 2:23:03 AM UTC+1, Ben Finney wrote: eamonn...@gmail.com writes: But is it efficient to use an axe? Which criterion is more important to *you* — fun, or efficiency? Is it sensible to use an axe when there is a chainsaw? No. Which

Re: Python GUI?

2013-09-14 Thread Chris Angelico
On Sat, Sep 14, 2013 at 9:54 PM, eamonn...@gmail.com wrote: Also, this thread hasn't been a troll. I'm completely serious. Why is it when I ask things like this people think I'm trolling?? :( This is python-list. We're used to duck-typing. If it looks like a file, we can write to it... if it

Re: Python GUI?

2013-09-14 Thread Wolfgang Keller
As complexity rises, though, I'd rather just code the creative parts of things, and not busy-code, which is what gui code becomes. Much of it is boiler-plate, cut and pasted, etc. If much of the code for a GUI is boiler-plate, busy-code etc. than I would suggest that the framework is not

Re: Python GUI?

2013-09-13 Thread Kevin Walzer
On 9/11/13 4:55 PM, eamonn...@gmail.com wrote: Tkinter -- Simple to use, but limited With the themed widget introduced in Tk 8.5, Tkinter is now a peer to the other GUI toolkits in most respects, surpasses them in some (canvas widget), and lags behind in just two areas: printing (several

Re: Python GUI?

2013-09-13 Thread eamonnrea
I don't like the idea of being able to drag and drop anything in the programming world. Outside of that, I use DD programs a lot. I got into GUI programming because I thought that I could get away from them, but I guess not. Maybe I'm against them because if I can't code, I don't have anything

Re: Python GUI?

2013-09-13 Thread petmertens
Enthought.traits !! http://code.enthought.com/projects/traits/ I started using traits a couple of months ago and I really like it. Traits provides a framework which creates a UI based on your data structures. Using some hints you can do anything you want. Just check out their website and try

Re: Python GUI?

2013-09-13 Thread eamonnrea
On Friday, September 13, 2013 4:02:42 AM UTC+1, Michael Torrie wrote: On 09/12/2013 10:03 AM, eamonn...@gmail.com wrote: I think your hate of gui designers is about 10 years out of date now, even if you still prefer not to use them. So, you are recommending not to code as much? :'( That is

Re: Python GUI?

2013-09-13 Thread John Gordon
In 76784bad-cd6d-48f9-b358-54afb2784...@googlegroups.com eamonn...@gmail.com writes: they're making programming easier... by not coding as much. Oh well, guess coding is dead :( Pressing keys on a keyboard was never the hard part of coding. -- John Gordon A is for Amy, who

Re: Python GUI?

2013-09-13 Thread Joe Junior
On 13 September 2013 15:39, John Gordon gor...@panix.com wrote: In 76784bad-cd6d-48f9-b358-54afb2784...@googlegroups.com eamonn...@gmail.com writes: they're making programming easier... by not coding as much. Oh well, guess coding is dead :( Pressing keys on a keyboard was never the hard

Re: Python GUI?

2013-09-13 Thread eamonnrea
I disagree with you. It's not hard, and I apologise if its ever sounded that way, but it is the fun part for me. I love spending hours(days even) debugging. Well, thanks all for depressing me. Time to give up programming and find something else to do with my life. --

Re: Python GUI?

2013-09-13 Thread Terry Reedy
On 9/13/2013 9:27 AM, Kevin Walzer wrote: On 9/11/13 4:55 PM, eamonn...@gmail.com wrote: Tkinter -- Simple to use, but limited With the themed widget introduced in Tk 8.5, Tkinter is now a peer to the other GUI toolkits in most respects, surpasses them in some (canvas widget), and lags behind

Re: Python GUI?

2013-09-13 Thread Joe Junior
On 13 September 2013 16:37, eamonn...@gmail.com wrote: I disagree with you. It's not hard, and I apologise if its ever sounded that way, but it is the fun part for me. I love spending hours(days even) debugging. Well, thanks all for depressing me. Time to give up programming and find

Re: Python GUI?

2013-09-13 Thread Neil Cerutti
On 2013-09-13, Joe Junior joe.fbs.jun...@gmail.com wrote: On 13 September 2013 15:39, John Gordon gor...@panix.com wrote: In 76784bad-cd6d-48f9-b358-54afb2784...@googlegroups.com eamonn...@gmail.com writes: they're making programming easier... by not coding as much. Oh well, guess coding is

Re: Python GUI?

2013-09-13 Thread eamonnrea
On Friday, September 13, 2013 8:56:15 PM UTC+1, Neil Cerutti wrote: On 2013-09-13, Joe Junior joe.fbs.jun...@gmail.com wrote: On 13 September 2013 15:39, John Gordon gor...@panix.com wrote: In 76784bad-cd6d-48f9-b358-54afb2784...@googlegroups.com eamonn...@gmail.com writes:

Re: Python GUI?

2013-09-13 Thread eamonnrea
On Friday, September 13, 2013 8:50:13 PM UTC+1, Joe Junior wrote: On 13 September 2013 16:37, eamonn...@gmail.com wrote: I disagree with you. It's not hard, and I apologise if its ever sounded that way, but it is the fun part for me. I love spending hours(days even) debugging.

Re: Python GUI?

2013-09-13 Thread Steven D'Aprano
On Fri, 13 Sep 2013 12:37:03 -0700, eamonnrea wrote: I disagree with you. It's not hard, and I apologise if its ever sounded that way, but it is the fun part for me. I love spending hours(days even) debugging. Well, thanks all for depressing me. Time to give up programming and find

Re: Python GUI?

2013-09-13 Thread eamonnrea
But is it efficient to use an axe? Is it sensible to use an axe when there is a chainsaw? No. Eventually, everyone will be using chainsaws, and no one will be using axes. This is my point: to have fun and be productive, but apparently it's not possible. --

Re: Python GUI?

2013-09-13 Thread Ben Finney
eamonn...@gmail.com writes: But is it efficient to use an axe? Which criterion is more important to *you* — fun, or efficiency? Is it sensible to use an axe when there is a chainsaw? No. Which criterion is more important to *you* — fun, or sensibility? Eventually, everyone will be using

Re: Python GUI?

2013-09-13 Thread Dave Angel
On 13/9/2013 15:37, eamonn...@gmail.com wrote: I disagree with you. It's not hard, and I apologise if its ever sounded that way, but it is the fun part for me. I love spending hours(days even) debugging. Well, thanks all for depressing me. Time to give up programming and find something

Re: Python GUI?

2013-09-13 Thread Michael Torrie
On 09/13/2013 12:23 PM, eamonn...@gmail.com wrote: On Friday, September 13, 2013 4:02:42 AM UTC+1, Michael Torrie wrote: On 09/12/2013 10:03 AM, eamonn...@gmail.com wrote: I think your hate of gui designers is about 10 years out of date now, even if you still prefer not to use them. So,

Re: Python GUI?

2013-09-12 Thread Dave Cook
On 2013-09-12, Michael Torrie torr...@gmail.com wrote: Not me. wxWidgets' event model is way too MFC-esque for me. Does it still use event numbers that you define? Shudder. You don't have to define IDs explicitly. That's been the case for a long time. Gtk and Qt's method of signals and

Re: Python GUI?

2013-09-12 Thread Jerry Hill
On Wed, Sep 11, 2013 at 4:55 PM, eamonn...@gmail.com wrote: Have you got anything to say on what one I should be using(excluding PyQT because it has a DD designer :( )? Is Tkinter really dead? Should I stick with wxPython? If that's a reason for excluding a GUI toolkit, you're in trouble.

Re: Python GUI?

2013-09-12 Thread Ian Foote
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/09/13 21:55, eamonn...@gmail.com wrote: There are a few known GUI toolkits out there, and the main ones from what I can tell are: Tkinter -- Simple to use, but limited PyQT -- You have a GUI designer, so I'm not going to count that PyGTK

Re: Python GUI?

2013-09-12 Thread Benjamin Kaplan
On Sep 12, 2013 9:06 AM, eamonn...@gmail.com wrote: On Thursday, September 12, 2013 6:05:14 AM UTC+1, Michael Torrie wrote: On 09/11/2013 02:55 PM, eamonn...@gmail.com wrote: PyQT -- You have a GUI designer, so I'm not going to count that What do you mean? Gtk has a GUI designer too.

Re: Python GUI?

2013-09-12 Thread Dave Cook
On 2013-09-12, Dave Cook davec...@nowhere.net wrote: There's also a markup language available, enaml: http://docs.enthought.com/enaml/ I should have mentioned that it's *Python*-based markup, not an XML horrorshow. http://pyvideo.org/video/1231/enaml-a-framework-for-building-declarative-user

Re: Python GUI?

2013-09-12 Thread Dave Cook
On 2013-09-12, Robert Kern robert.k...@gmail.com wrote: There is nothing forcing you to use the GUI designers if you don't want to. There's also a markup language available, enaml: http://docs.enthought.com/enaml/ Dave Cook -- https://mail.python.org/mailman/listinfo/python-list

Re: Python GUI?

2013-09-12 Thread Robert Kern
On 2013-09-12 17:03, eamonn...@gmail.com wrote: On Thursday, September 12, 2013 6:05:14 AM UTC+1, Michael Torrie wrote: On 09/11/2013 02:55 PM, eamonn...@gmail.com wrote: Possibly. I know Qt and Gtk both can flip the button orders, etc to look more native. And all good toolkits give you

Re: Python GUI?

2013-09-12 Thread eamonnrea
On Thursday, September 12, 2013 6:05:14 AM UTC+1, Michael Torrie wrote: On 09/11/2013 02:55 PM, eamonn...@gmail.com wrote: PyQT -- You have a GUI designer, so I'm not going to count that What do you mean? Gtk has a GUI designer too. what of it? I, personally, really like

Re: Python GUI?

2013-09-12 Thread Michael Torrie
On 09/12/2013 10:03 AM, eamonn...@gmail.com wrote: I didn't realise GTK has a GUI designer too :( I don't like it when you can DD to position things. I don't understand why someone wouldn't want to write the positioning code, and have fun with the debugging. That's the best part about

Re: Python GUI?

2013-09-12 Thread Michael Torrie
On 09/12/2013 09:02 PM, Michael Torrie wrote: In any event I think you should give both Glade-3 and Qt Designer a serious look. I think your hate of gui designers is about 10 years out of date now, even if you still prefer not to use them. This is a bit old but still how Qt works:

Re: Python GUI?

2013-09-12 Thread Peter
I stuck with Tkinter combined with PMW for a very long time, but the lack of extra widgets finally drove me to look elsewhere. I tried PyQT but didn't have a good experience. I can't remember details, but things just seemed to have little gotchas - which the mailing list were very helpful with

Re: Python GUI?

2013-09-12 Thread Michael Torrie
On 09/12/2013 09:39 PM, Peter wrote: I stuck with Tkinter combined with PMW for a very long time, but the lack of extra widgets finally drove me to look elsewhere. I tried PyQT but didn't have a good experience. I can't remember details, but things just seemed to have little gotchas - which

Re: Python GUI?

2013-09-12 Thread CM
Tkinter -- Simple to use, but limited PyQT -- You have a GUI designer, so I'm not going to count that As others have pointed out, that's nonsensical. If you don't like the GUI designer, just don't use it. wxPython -- Very nice, very professional, approved by Python creator, but alas

Python GUI?

2013-09-11 Thread eamonnrea
There are a few known GUI toolkits out there, and the main ones from what I can tell are: Tkinter -- Simple to use, but limited PyQT -- You have a GUI designer, so I'm not going to count that PyGTK -- Gnome officially back this I think wxPython -- Very nice, very professional, approved by Python

Re: Python GUI?

2013-09-11 Thread Michael Torrie
On 09/11/2013 02:55 PM, eamonn...@gmail.com wrote: PyQT -- You have a GUI designer, so I'm not going to count that What do you mean? Gtk has a GUI designer too. what of it? I, personally, really like wxPython, but I also really like Tkinter. I've messed with PyGTK, but I'd choose wxPython

Need to modify a Python Gui

2013-06-01 Thread matt . doolittle33
Hi everybody, I have a Python GUI that displays some data in labeled fields. As new data comes in the fields clear and the old data is lost. I need to make a text box in the GUI that will display the cleared data in a scrolling list. I also need this scrolling list to be logged to a file

Re: Python GUI questions

2013-03-31 Thread Jan Riechers
On 19.03.2013 21:01, maiden129 wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. My questions are: How can I make an empty Entry object that will hold a word that a user will enter? How to make an empty

Re: Python GUI questions

2013-03-20 Thread Rick Johnson
On Tuesday, March 19, 2013 10:21:06 PM UTC-5, Terry Reedy wrote: On 3/19/2013 10:16 PM, Ranting Rick wrote: [snip code] when I run this, and click the button, I get: TypeError: cbButton() missing 1 required positional argument: 'self' ...when I remove 'self' from cbButton, I get the

Python GUI questions

2013-03-19 Thread maiden129
Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. My questions are: How can I make an empty Entry object that will hold a word that a user will enter? How to make an empty Entry object that will hold a single

Re: Python GUI questions

2013-03-19 Thread Chris Angelico
On Wed, Mar 20, 2013 at 6:01 AM, maiden129 sengokubasarafe...@gmail.com wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. This sounds like homework. Have you had a try at it yourself before asking? If so,

Re: Python GUI questions

2013-03-19 Thread maiden129
On Tuesday, March 19, 2013 5:39:51 PM UTC-4, Chris Angelico wrote: On Wed, Mar 20, 2013 at 6:01 AM, maiden129 wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. This sounds like homework. Have

Re: Python GUI questions

2013-03-19 Thread Rick Johnson
On Tuesday, March 19, 2013 2:01:24 PM UTC-5, maiden129 wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. My questions are: How can I make an empty Entry object that will hold a word that a user will

Re: Python GUI questions

2013-03-19 Thread maiden129
On Tuesday, March 19, 2013 8:57:42 PM UTC-4, Rick Johnson wrote: On Tuesday, March 19, 2013 2:01:24 PM UTC-5, maiden129 wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the of occurrences of the character in the string in Tkinter. My questions

Re: Python GUI questions

2013-03-19 Thread Jason Swails
On Tue, Mar 19, 2013 at 9:25 PM, maiden129 sengokubasarafe...@gmail.comwrote: On Tuesday, March 19, 2013 8:57:42 PM UTC-4, Rick Johnson wrote: On Tuesday, March 19, 2013 2:01:24 PM UTC-5, maiden129 wrote: Hello, I'm using python 3.2.3 and I'm making a program that show the

Re: Python GUI questions

2013-03-19 Thread Ranting Rick
On Mar 19, 8:25 pm, maiden129 sengokubasarafe...@gmail.com wrote: Here is my try to answer some of questions: [snip code] I don't understand why you are wrapping this code into a class. Are you trying to create something reuseable? I'm just struggling with only how to create an object that

Re: Python GUI questions

2013-03-19 Thread maiden129
On Tuesday, March 19, 2013 10:16:25 PM UTC-4, Rick Johnson wrote: On Mar 19, 8:25 pm, maiden129 sengokubasarafe...@gmail.com wrote: So should I redo my other code that I created with the radioButtons to change the colors of a text? from tkinter import * class buttons: def

Re: Python GUI questions

2013-03-19 Thread Rick Johnson
On Tuesday, March 19, 2013 9:36:28 PM UTC-5, maiden129 wrote: So should I redo my other code that I created with the radioButtons to change the colors of a text? I believe so. Although you really should explain what your trying to achieve with this code. There is nothing wrong with wrapping

Re: Python GUI questions

2013-03-19 Thread Terry Reedy
On 3/19/2013 10:16 PM, Ranting Rick wrote: import tkinter as tk from tkinter.constants import LEFT def cbButton(self): print('I should do something here!') root = tk.Tk() root.title(Window) w=tk.Label(root, text=Enter a string) w.pack(side=LEFT) e1 = tk.Entry(root, bd=5)

Re: Python GUI able to display a spatial image

2013-01-28 Thread eagleds88
On Friday, January 25, 2013 8:34:16 AM UTC-8, Alex wrote: Hello, does python have capabilities to display a spatial image and read the coordinates from it? If so, what modules or extension do I need to achieve that? I'll appreciate any help. Thanks, Alex Try basemap:

Python GUI able to display a spatial image

2013-01-25 Thread Alex
Hello, does python have capabilities to display a spatial image and read the coordinates from it? If so, what modules or extension do I need to achieve that? I'll appreciate any help. Thanks, Alex -- http://mail.python.org/mailman/listinfo/python-list

[issue15998] Python GUI idle not working

2012-09-24 Thread Sreenivas
Sreenivas added the comment: Hi All, I was able to solve the problem.I reinstalled the python overwriting the lib packages of the previously installed Python.I was not overwriting it before because I was afraid that I would lose my pyserial and cx_Freeze lib files.But it was still there and

[issue15998] Python GUI idle not working

2012-09-24 Thread Roger Serwy
Roger Serwy added the comment: A re-install fixed the issue for OP caused by what appeared to be a corrupt /Lib directory. I'm closing this issue. -- resolution: - works for me status: open - closed ___ Python tracker rep...@bugs.python.org

[issue15998] Python GUI idle not working

2012-09-21 Thread Sreenivas
New submission from Sreenivas: Hi Everybody, I have a problem where Python GUI IDLE is not working.I did go through the issues 15658,9925,4625.I did follow the steps given in these issues.I did unset the tcl and tk_library.I was able to open the python idle temporarily.But once i closed it I

[issue15998] Python GUI idle not working

2012-09-21 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ned.deily, serwy, terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15998 ___

[issue15998] Python GUI idle not working

2012-09-21 Thread Roger Serwy
Roger Serwy added the comment: Hi Sreeni, Can you launch a Python interpreter from C:\python32\python.exe and report the output to import tkinter ? -- status: open - pending type: crash - behavior ___ Python tracker rep...@bugs.python.org

  1   2   3   4   5   >