Python GTK GUI struck when process is going on.

MRAB python at mrabarnett.plus.com
Thu Jan 9 10:15:01 EST 2014


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.



More information about the Python-list mailing list