cardinal_pythonlib.progress


Original code copyright (C) 2009-2022 Rudolf Cardinal (rudolf@pobox.com).

This file is part of cardinal_pythonlib.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


Counters etc. for visual display of progress.

class cardinal_pythonlib.progress.ActivityCounter(activity: str, n_total: int = None, report_every: int = 1000, loglevel: int = 10)[source]

Simple class to report progress in a repetitive activity.

Parameters:
  • activity – Description of the repetitive activity being performed.
  • n_total – If known, the total number of iterations required.
  • report_every – Report progress every n operations.
  • loglevel – Log level to use.
tick() → None[source]

Note a further occurrence, and report progress if required.