Re: [Tkinter-discuss] Help needed

2019-07-30 Thread Michael Lange
Hi, On Tue, 30 Jul 2019 15:43:53 +0530 Balasubramani K wrote: > I have a questions : > Cant we use tqdm progress bar in tkinter window ?? > In other words, can't we get a terminal window in tkinter window; where > whatever the output of the code that is executed should be shown in the >

Re: [Tkinter-discuss] Help needed

2019-07-30 Thread Balasubramani K
Hi Michael, Thanks for the help,It is useful. I have a questions : Cant we use tqdm progress bar in tkinter window ?? In other words, can't we get a terminal window in tkinter window; where whatever the output of the code that is executed should be shown in the terminal. like how we use in

Re: [Tkinter-discuss] Help needed

2019-07-30 Thread Michael Lange
Hi, On Mon, 29 Jul 2019 15:26:30 +0530 Balasubramani K wrote: > Hi , > I'm using following modules in python 3: > import requests > import os > from tqdm import tqdm > > > a piece of code from my script, > > requests.get(url, stream=True,allow_redirects=True) > total_size =

[Tkinter-discuss] Help needed

2019-07-29 Thread Balasubramani K
Hi , I'm using following modules in python 3: import requests import os from tqdm import tqdm a piece of code from my script, requests.get(url, stream=True,allow_redirects=True) total_size = int(r.headers['content-length']) with open(SaveLocation + SaveFilename, 'wb') as f: for data in

Re: [Tkinter-discuss] help needed with radiobutton

2007-03-27 Thread Mikael Olofsson
Sang Park wrote: how do I select radionbutton by default? for my school project, I need to have 10 radio buttons and have half of them selected I have for i in range(10): x = IntVar() if i 5: rb = Radiobutton(buttonFrame, variable=x, value=1,state=DISABLED) else: rb =