You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that when using the track function in rich.progress, there is no direct way to set the completed steps (completed), making it less convenient to implement resumable progress.
Expected Solution:
I would like to request the addition of a completed parameter in the track function. This enhancement would make it easier for users to implement resumable progress by allowing the saving and loading of completed work, enabling the ability to resume progress mid-task.
Example Usage:
fromrich.progressimporttrack# Current usageforitemintrack(items, description="Processing..."):
# Some processing logic# Expected usageforitemintrack(items, description="Processing...", completed=saved_progress):
# Some processing logic
The text was updated successfully, but these errors were encountered:
Issue Description:
I've noticed that when using the
track
function inrich.progress
, there is no direct way to set the completed steps (completed
), making it less convenient to implement resumable progress.Expected Solution:
I would like to request the addition of a
completed
parameter in thetrack
function. This enhancement would make it easier for users to implement resumable progress by allowing the saving and loading of completed work, enabling the ability to resume progress mid-task.Example Usage:
The text was updated successfully, but these errors were encountered: