![]() |
VOOZH | about |
dotnet add package TqdmSharp --version 1.3.4
NuGet\Install-Package TqdmSharp -Version 1.3.4
<PackageReference Include="TqdmSharp" Version="1.3.4" />
<PackageVersion Include="TqdmSharp" Version="1.3.4" />Directory.Packages.props
<PackageReference Include="TqdmSharp" />Project file
paket add TqdmSharp --version 1.3.4
#r "nuget: TqdmSharp, 1.3.4"
#:package TqdmSharp@1.3.4
#addin nuget:?package=TqdmSharp&version=1.3.4Install as a Cake Addin
#tool nuget:?package=TqdmSharp&version=1.3.4Install as a Cake Tool
TqdmSharp is a C# implementation of the tqdm progress bar, providing an easy-to-use and visually appealing way to track progress in console applications. Inspired by the cpptqdm project, we extend our gratitude to its creator for the inspiration and groundwork laid out in the original C++ implementation.
dotnet add package TqdmSharp
Install-Package TqdmSharp
Easily wrap a collection for progress tracking. Ideal for quick integration with existing collections:
var arr = Enumerable.Range(0, 100).ToArray();
foreach (int item in Tqdm.Wrap(arr)) {
// Perform your operations here
}
Enhance clarity by adding a descriptive label to the progress bar, useful for distinguishing different stages or types of iterations:
var arr = Enumerable.Range(0, 100).ToArray();
foreach (int item in Tqdm.Wrap(arr, out var bar)) {
bar.SetLabel("Processing stage");
// Your processing logic here
}
When working with enumerables where the total count is known, provide it directly to track progress accurately:
var enumerable = Enumerable.Range(0, 100);
foreach (int item in Tqdm.Wrap(enumerable, 100)) {
// Iteration tasks here
}
Directly use the ProgressBar class for more control and customization over the progress tracking:
int count = 10;
var bar = new Tqdm.ProgressBar(total: count);
for (int i = 0; i < count; i++) {
bar.Progress(i); // Can be replaced with bar.Step() to increase counter by 1.
// Custom operation
}
bar.Finish();
Modify the total counter as your operation progresses, useful for processes with a variable number of iterations:
int count = 10;
var bar = new Tqdm.ProgressBar(total: count);
for (int i = 0; i < count; i++) {
if (i % 7 == 0) count *= 2;
bar.Progress(i, count);
// Adjusted operation based on new count
}
bar.Finish();
TqdmSharp offers additional parameters for fine-tuning the progress bar's behavior, including the ability to use exponential moving average for rate calculation, adjusting the width of the progress bar, and setting the update frequency for real-time progress updates.
To showcase the functionality and visual appeal of TqdmSharp, here's a simple demonstration using the Wrap method with color enhancement. In this example, we iterate over a range of numbers, with each iteration pausing briefly to simulate a longer-running process. The useColor: true parameter adds a vibrant touch to the progress bar, making it more visually engaging. Observe how the progress bar updates in real-time with each iteration:
var arr = Enumerable.Range(0, 100).ToArray();
foreach (int item in Tqdm.Wrap(arr, useColor: true)) {
// do something to not complete instantly
Thread.Sleep(50);
}
Special thanks to the cpptqdm project for inspiring the design and functionality of TqdmSharp.
We warmly welcome contributions to TqdmSharp! Whether you're fixing bugs, improving the documentation, or adding new features, your help makes this project better for everyone.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on TqdmSharp:
| Package | Downloads |
|---|---|
|
TorchSharp.PyBridge
Package Description |
|
|
MinHashSharp
Package Description |
This package is not used by any popular GitHub repositories.
1.3.4: Fixed unexpected progress bar display when calling Step() or Progress().
1.3.0: Added bar.Step() method for simplified progress tracking.