Skip to main content
7 votes
2 answers
2k views

Tee Suppressing Progress Bar in Shell Script

I'm trying to log a script in its entire form using tee. Part of the script involves downloading files which which feature a progress bar to track the percentage downloaded and I've noticed this ...
1 vote
1 answer
63 views

How to display a progression bar on the task bar using Go and Fyne?

I am creating a little software in Golang. I use Fyne as GUI library. It creates long process (it it a file encrypter), so I display a progression bar, as it: go func() { go encryptCore( ...
6 votes
2 answers
3k views

tqdm update after last iteration

I'm using tqdm as a nice progressbar, but after iterating over the progressbar I want to update the description. The following is a simple example: with tqdm(somelist) as pbar: for element in pbar: ...
1 vote
1 answer
113 views

Python multicore processing with Dask progress bar not showing

I have a database table 'Sensor_Data' with sensor data form different locations having columns, id, timestamp, value. Each id corresponds to a sensor in a particular location. I am trying to use ...
591 votes
51 answers
1.2m views

Python Progress Bar

How do I use a progress bar when my script is doing some task that is likely to take time? For example, a function which takes some time to complete and returns True when done. How can I display a ...
0 votes
1 answer
51 views

Displaying correct upload progress

I am using XMLHttpRequest to POST 400-500k files to relatively slow ESP32-based server. The upload takes several minutes. The xhr.onreadystatechange event with readyState 4 fires at the end as ...
0 votes
0 answers
40 views

Does exists a pattern for Spring MVC Framework to handle progressive job?

I have to improve an import job in my web app made with Spring MVC Framework. This job can take a bit then would be great to give the user the progression and the possibility to interrupt it. I'm ...
1 vote
1 answer
37 views

TQDM progress bar stopping progress until a key is pressed [closed]

I have this program in which a progress bar is displayed to show the process of computation of the pe ratio and other metrics for a set of stocks, however sometimes the progress bar stops at a given ...
0 votes
1 answer
88 views

Show progress bar when reading files with globbing with polars

I have a folder with multiple Excel files. I'm reading all of them in a single polars DataFrame concatenated vertically using globbing: import polars as pl df = pl.read_excel("folder/*.xlsx")...
2 votes
4 answers
15k views

Progress bar style in WPF is old fashioned. Increments in Bars. How to implement a progress bar with vista or windows-7 shady glow effect?

Progress bar style in WPF is old fashioned. Increments in Bars. How to implement a progress bar with vista or windows-7 shady glow effect ? Image http://quickshare.my3gb.com/download/2.JPG Even ...
4 votes
3 answers
16k views

How to change the progressbar foreground color based on its value depending on the range the current value is currently in

i have already checked the below question but i didnt get completely as i am new to WPF. Is there a way to change the color of a WPF progress bar via binding to a view model property If you have any ...
0 votes
2 answers
4k views

Upload files with showing determinate Progress Bar in Notification bar using React Native

I am trying to achieve a scenario where file is uploading and I want to make this upload process keep running with having percentage bar when the app was kill. And The process will resume upload ...
22 votes
5 answers
39k views

How to change ttk.progressBar color in python

Does anyone know how I can change the color of my ttk.progressBar? It now shows a green color, and I would love to have it blue. import ttk self.progressBar = ttk.Progressbar(frame3, length=560, ...
0 votes
3 answers
904 views

ProgressBar and AsyncTask

I currently have an AsyncTask running that updates the progress bar inside the Activity while downloading a file. The problem is when i leave the Activity and reenters, the ProgressBar will not update ...
6 votes
1 answer
10k views

How to upload a file and show progress bar in Django?

I have written code to upload a file in Django as follows: def upload(request): if request.method == 'POST': form = UploadFileForm(request.POST, request.FILES) if form.is_valid(): ...

15 30 50 per page
1
2 3 4 5
507