Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'mrab': 0.05; 'subject:Python': 0.06; 'callback': 0.09; 'etc).': 0.09; 'kumar': 0.09; 'subject:process': 0.09; 'api': 0.11; 'python': 0.11; 'gui': 0.12; 'thread': 0.14; 'from:addr:torriem': 0.16; 'from:name:michael torrie': 0.16; 'struck': 0.16; 'subject:GUI': 0.16; 'subject:when': 0.16; 'thread?': 0.16; 'timeout': 0.16; 'uploading': 0.16; 'wrote:': 0.18; 'all,': 0.19; 'header:User- Agent:1': 0.23; 'bytes': 0.24; 'progress.': 0.24; 'subject: : ': 0.26; 'post': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; "i'm": 0.30; 'complete,': 0.31; 'file': 0.32; 'but': 0.35; 'done': 0.36; 'doing': 0.36; 'wrong': 0.37; 'message-id:@gmail.com': 0.38; 'checks': 0.38; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'completed': 0.61; "you're": 0.61; 'show': 0.63; 'finish': 0.65; 'round.': 0.84 X-Virus-Scanned: amavisd-new at torriefamily.org Date: Thu, 09 Jan 2014 23:19:08 -0700 From: Michael Torrie User-Agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.12) Gecko/20130105 Thunderbird/10.0.12 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Re : Python GTK GUI struck when process is going on. References: <52CEBCF5.6060804@mrabarnett.plus.com> In-Reply-To: <52CEBCF5.6060804@mrabarnett.plus.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389334785 news.xs4all.nl 2970 [2001:888:2000:d::a6]:48480 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63640 On 01/09/2014 08:15 AM, MRAB wrote: > On 2014-01-09 11:53, Prapulla Kumar wrote: >> Hi all, >> I'm using python gtk to upload file to S3 service by boto API , >> GUI struck when uploading file and releases the GUI after completed download >> I'm using thread to show progress of upload in GUI but it struck. >> Can you some suggestion how to show progress of upload in GUI or any >> spinner until upload finish >> > You say that you're using a thread to show the progress. Does that mean > that you're doing the uploading in the main thread? > > If yes, then that's the wrong way round. It's the uploading that needs > to be done in the background thread. And you can post update messages from the thread using a queue of some kind. The GUI just has to have a timeout that checks the queue and updates the gui with messages (percent complete, bytes transferred, etc). Or have the thread use gobject.idle_add to schedule a callback in the main thread that will check on the upload status and update the GUI.