473,804 Members | 3,649 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

progress bar

OS: Win2K
Python version: 2.2

Seeking references to documentation that discuss how a python script
can handle displaying a progress bar. Also, if you are aware of any
sample code that illustrates this, I'm interested in looking at that
sample code.

Are there ways to accomplish this that do not involve using a
full-featured GUI toolkit like Tkinter or wxPython or PythonCard?
Jul 18 '05 #1
7 3607
> OS: Win2K
Python version: 2.2

Seeking references to documentation that discuss how a python script
can handle displaying a progress bar. Also, if you are aware of any
sample code that illustrates this, I'm interested in looking at that
sample code.

Are there ways to accomplish this that do not involve using a
full-featured GUI toolkit like Tkinter or wxPython or PythonCard?


Try Venster:
http://venster.sourceforge.net

IIRC the test_coolbar.py script includes a progress bar.

-Dave

Jul 18 '05 #2
On 23 Jan 2004 13:29:38 -0800, mi************@ yahoo.com (Miranda Evans)
wrote:
Seeking references to documentation that discuss how a python script
can handle displaying a progress bar. Also, if you are aware of any
sample code that illustrates this, I'm interested in looking at that
sample code.

Are there ways to accomplish this that do not involve using a
full-featured GUI toolkit like Tkinter or wxPython or PythonCard?


http://aspn.activestate.com/ASPN/Coo.../Recipe/168639

Jul 18 '05 #3
>
Try Venster:
http://venster.sourceforge.net

IIRC the test_coolbar.py script includes a progress bar.


I wonder what possessed someone to start another GUI framework. Aren't
there more than enough existing ones? The reasoning for it wasn't
immediately apparent on the web page.

Hoang Do
http://jotsite.com

Jul 18 '05 #4
# > Try Venster:
# > http://venster.sourceforge.net
# >
# > IIRC the test_coolbar.py script includes a progress bar.
#
# I wonder what possessed someone to start another GUI framework. Aren't
# there more than enough existing ones? The reasoning for it wasn't
# immediately apparent on the web page.

Aside from any pure utility, because it's fun. :)

--

Jonathan Daugherty
http://www.cprogrammer.org

"It's a book about a Spanish guy called Manual, you should read it."
-- Dilbert

Jul 18 '05 #5
Hoang wrote:
Try Venster:
http://venster.sourceforge.net

IIRC the test_coolbar.py script includes a progress bar.


I wonder what possessed someone to start another GUI framework. Aren't
there more than enough existing ones? The reasoning for it wasn't
immediately apparent on the web page.


Well, the intro you read said:

"Venster is a highly native Windows GUI toolkit for Python based on the ctypes
ffi library. The aim of Venster is to be a very lightweight wrapper around the
standard Win32 API, making it easy to write slick windows applications in pure
Python. "

Being very lightweight is a big deal compared to many other frameworks. I
include Venster in one of my applications and it weighs in at under 100KB. If
size of download / installer is important, this is a real win compared to the
multi-megabyte size of most other frameworks - the entire application (Python +
Venster + app) is shipped in a 1.3 MB cab file.

The other thing worth noticing from the intro is that Venster is pure Python.
Because of that it's very easy to extend and you avoid all sorts of build
hassles because there _is_ no build.

IMO the main downside of Venster is that it is not yet as mature as other
frameworks, so programming in it is not nearly as highlevel as, say, wxPython.
Still, there's a number of places where it's a good fit already - at my company
we recently started using it in a new application where the UI is either done
in Flash or in a few dialog boxes, and Venster creates the Window to host the
UI, does the dialog boxes, and handles the events generated by Flash - it'd be
overkill to have to include all of wxPython just to get that functionality.

-Dave
Jul 18 '05 #6
"Hoang" <tr@jotsite.com > wrote in message news:<9p******* **********@news svr29.news.prod igy.com>...

Try Venster:
http://venster.sourceforge.net

IIRC the test_coolbar.py script includes a progress bar.


I wonder what possessed someone to start another GUI framework. Aren't
there more than enough existing ones? The reasoning for it wasn't
immediately apparent on the web page.

Hoang Do
http://jotsite.com


Newbie questions...wha t is meant by the term 'GUI framework'? I'm
aware of Tkinter, wxPython and PythonCard (which, I believe builds
from a wxPython foundation). Also, it appears as though pywin.mfc has
GUI capabilities. Are Tkinter, wxPython, PythonCard and pywin.mfc
considered GUI frameworks? Based on the 'more than enough...' remark,
it sounds like there are several GUI frameworks out there...what are
some others?
Jul 18 '05 #7
> Newbie questions...wha t is meant by the term 'GUI framework'? I'm
aware of Tkinter, wxPython and PythonCard (which, I believe builds
from a wxPython foundation). Also, it appears as though pywin.mfc has
GUI capabilities. Are Tkinter, wxPython, PythonCard and pywin.mfc
considered GUI frameworks? Based on the 'more than enough...' remark,
it sounds like there are several GUI frameworks out there...what are
some others?


Really, a GUI framework is a set of stuff that allows the construction
of a GUI more easily.

One could, with a bitmap drawing function, get mouse click and get key
press, create a GUI. This is a pain in the ass. All the GUI frameworks
available allow one to do that if they want, but also allow one to use
predefined sets of operations, objects, etc., commonly in a heirarchy,
to produce a GUI that is easier to write and to update.
There is a listing of GUI toolkits for various languages and platforms
available here:
http://home.pacbell.net/atai/guitool/
(I'm feeling lucky entry at google for 'python gui frameworks' )

- Josiah

P.S. I very much enjoy using wxPython.
Jul 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2869
by: SpamProof | last post by:
I got an animated gif that is a barber pole spinning that I want to use as a progress bar. The problem is that is stops spinning (shows 1 frame) when my browser is processing a submited request that might take 5-8 seconds. I tried to putting the gif in a sepearate page and referencing it using iframe thinking that if the gif is on another page & calling it from my main page, it would not be affected by my submittals and continue to...
7
5393
by: Pepi Tonas | last post by:
I have a form that takes some time to load because it has to populate some Data. I was trying to display a form on top of it with an activity bar so that user can see that something's going on. I have tried doing this and using a progress bar that counts up to 100 and then zeros down so that it should be constantly moving while the main or background windows finishes loading. The problem is that the "in progress window" doesn't display...
1
1644
by: scorpion53061 | last post by:
this code came from cor and I think Armin authored it. I am trying to download an access database and track its progress. It is reading the size fo the file but I am unsure of how to get the data there. It is not actually writing anything. Any ideas anyone? Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
8
5206
by: Brian Henry | last post by:
I created a smooth progress bar with this code.. but if you update the values in a row quickly of it and watch it on screen it flickers... how would i change this to reduce the flickering? thanks... Imports System Imports System.Drawing Imports System.Drawing.Drawing2D
8
4759
by: WhiteWizard | last post by:
I guess it's my turn to ASK a question ;) Briefly my problem: I am developing a Windows app that has several User Controls. On one of these controls, I am copying/processing some rather large binary files, so have created a second thread to do the processing. This thread is set to be the LOWEST priority. So far so good with all that. HOWEVER, I am trying to provide some feedback to the user (the bane of our existence!) via a progress...
1
4121
by: daniel_xi | last post by:
Hi all, I am running a VS 2003 .NET project on my client machine (Win 2000 SP4, ..NET framework 1.1), running an ASP.NET application on a remote web server (Win 2000 Server, IIS 6.0, .NET framework 1.1). The application implements a Progress Bar webcontrol, that pops up in a window, using the HttpHandler interface, on the event of a button click. The handler's process request routine reads the status of the progress by querying the...
15
3550
by: eladla | last post by:
Hi! I am creating a composite control the does some of it`s own data access. I want to display a progress bar between the time the page is loaded and the control place holder is displayed and final display of the data from the database. I was thinking of manually opening a second thread in the Render method, but nothing is displayed before the render method exits anyway. Anyone know of a good way to do this? I have been working on this...
5
4046
by: Aggelos | last post by:
Hello I am doing sevreral scripts like sending a newsletter that might take a while to finish first to prevent the browser from timing out and to keep the user informed of the process progress I want to use a loader progress bar. I did a plain expanding gif but the problem is that it prevents me at the end from redirecting. Do you have in mind any nice script that might do that? AJAX would be a good solution. Or something that will pop...
1
3236
by: Bob | last post by:
Hi, I am having trouble seeing how this bolts together. The UI starts a process which involves a long running database update. All Database activity is handled by a class called DT. DT has a progress event. So I added a bw to the form. The Dowork Calls a method which instantiates a DT and calls its Dataprocessing method.
0
3110
by: jags_32 | last post by:
Hello We use MFG-PRO as our ERP system which in turn uses Progress databases. In the old version of SQL 2000, using DTS packages, we used to set the code page via command prompts and execute DTS packages within that command prompt to fetch data from our double byte ERP databases. In SSIS, we are able to connect and fecth data from NON Double Byte databases, however, when we set the code page first and execute via a command prompt the...
0
9705
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9576
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10310
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9138
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7613
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6847
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5515
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4291
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.