Re: Using TKinter to show popular tweets from twitter API (Tweepy)

2017-04-05 Thread Terry Reedy
On 4/5/2017 3:48 PM, uni...@gmail.com wrote: I'm building a python app where it should show the popular tweets > in boxes in line with each other using TKinter. By 'boxes' do you mean a visible border for Label widgets? If so, you have to configure one. You don't below. > The problem is t

Re: Using Tkinter

2008-08-23 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> wrote: >On Aug 22, 7:20 am, J-Burns <[EMAIL PROTECTED]> wrote: . . . >> If I have a drop down box in Pythons tkinter, is it possible that the >> entities that the drop down h

Re: Using Tkinter

2008-08-23 Thread Scott David Daniels
J-Burns wrote: Hello. Im a bit new to using Tkinter and im not a real pro in programming itself... :P. Need some help here. OK, looks like you are getting direct answers, but I thought I'd mention an easy way to experiment with Tkinter programming. If you start Idle with the "-n" switch (*), t

Re: Using Tkinter

2008-08-22 Thread adam2new
For references, you may use these PDF files (One URL changed since my last time there, but it should be correct for now): http://www.pythonware.com/media/data/an-introduction-to-tkinter.pdf http://infohost.nmt.edu/tcc/help/pubs/tkinter/tkinter.pdf (The first one may be useful for starting out) I'l

Re: using tkinter to display html

2007-04-21 Thread Stephen M. Gava
On Sat, 21 Apr 2007 09:57:09 -0400, Kevin Walzer wrote: > Stephen M. Gava wrote: >> On Fri, 20 Apr 2007 03:28:22 -0700, Rob Wolfe wrote: > The following thread has various ideas in it: > http://mail.python.org/pipermail/python-list/2001- October/107989.html thanks mike, i found that t

Re: using tkinter to display html

2007-04-21 Thread Kevin Walzer
Stephen M. Gava wrote: > On Fri, 20 Apr 2007 03:28:22 -0700, Rob Wolfe wrote: The following thread has various ideas in it: http://mail.python.org/pipermail/python-list/2001-October/107989.html >>> thanks mike, i found that thread before i posted here, it doesn'rt >>> answer my question t

Re: using tkinter to display html

2007-04-20 Thread Stephen M. Gava
On Thu, 19 Apr 2007 23:42:49 -0700, Glenn Hutchings wrote: > On 20 Apr, 02:54, "Stephen M. Gava" <[EMAIL PROTECTED]> > wrote: >> yeah. i feel like i'm being forced to use wxwidgets/wxpython just >> because i need pretty good html display though. > > You could always use a real web browser: > >

Re: using tkinter to display html

2007-04-20 Thread Stephen M. Gava
On Fri, 20 Apr 2007 09:45:16 -0400, Kevin Walzer wrote: > PySol has an HTML viewer. Here's a link to some discusison about it: > > http://mail.python.org/pipermail/tkinter-discuss/2006- January/000614.html > > PySol is GPL, so if your application is also GPL, then it might be an > option. thank

Re: using tkinter to display html

2007-04-20 Thread Stephen M. Gava
On Fri, 20 Apr 2007 03:28:22 -0700, Rob Wolfe wrote: >> > The following thread has various ideas in it: >> > http://mail.python.org/pipermail/python-list/2001-October/107989.html >> >> thanks mike, i found that thread before i posted here, it doesn'rt >> answer my question though. > > Why not? Did

Re: using tkinter to display html

2007-04-20 Thread Kevin Walzer
Stephen M. Gava wrote: > Hi all, > > I prefer using tkinter to wxpython (so sue me :) and i need to display a > lot of html in a particular app. does anyone know if one of the existing > add on tk html widgets have been wrapped for tkinter already? > > TIA for any reply, > Stephen PySol has an

Re: using tkinter to display html

2007-04-20 Thread Rob Wolfe
Stephen M. Gava wrote: > On Thu, 19 Apr 2007 06:09:33 -0700, kyosohma wrote: > > > On Apr 19, 6:29 am, "Stephen M. Gava" <[EMAIL PROTECTED]> > > wrote: > >> Hi all, > >> > >> I prefer using tkinter to wxpython (so sue me :) and i need to display > >> a lot of html in a particular app. does anyone

Re: using tkinter to display html

2007-04-19 Thread Glenn Hutchings
On 20 Apr, 02:54, "Stephen M. Gava" <[EMAIL PROTECTED]> wrote: > yeah. i feel like i'm being forced to use wxwidgets/wxpython just because > i need pretty good html display though. You could always use a real web browser: import webbrowser webbrowser.open_new("index.html") Glenn -- htt

Re: using tkinter to display html

2007-04-19 Thread Stephen M. Gava
On Thu, 19 Apr 2007 06:09:33 -0700, kyosohma wrote: > On Apr 19, 6:29 am, "Stephen M. Gava" <[EMAIL PROTECTED]> > wrote: >> Hi all, >> >> I prefer using tkinter to wxpython (so sue me :) and i need to display >> a lot of html in a particular app. does anyone know if one of the >> existing add on t

Re: using tkinter to display html

2007-04-19 Thread kyosohma
On Apr 19, 6:29 am, "Stephen M. Gava" <[EMAIL PROTECTED]> wrote: > Hi all, > > I prefer using tkinter to wxpython (so sue me :) and i need to display a > lot of html in a particular app. does anyone know if one of the existing > add on tk html widgets have been wrapped for tkinter already? > > TIA

Re: using Tkinter from IDLE

2005-03-03 Thread Russell Blau
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How do I use Tkinter from IDLE? Tkinter can be used from IDLE attached > to python 2.2, IDLE 0.8. But I couldn't use from IDLE attached to > python 2.3, IDLE 1.0.3. When I execute the code below: > from Tkinter import * > root = Tk()