archive
/
Printr
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Printr/printr/ItterPrintr/__init__.py

29 lines
755 B
Python

from printr.exceptions import FormattingError
from printr.utils import write
class ItterPrintr():
def __init__(self, string, maxValue, start, diff=1):
self.string = string
self.maxValue = maxValue
self.start = start
self.diff = diff
self.value = self.start
self.buildString()
def buildString(self):
try:
return self.string.format(c=self.value, m=self.maxValue)
except:
raise FormattingError()
def reachedLimit(self):
return self.maxValue <= self.value
def update(self, inc=True):
write(self.buildString(), commit=(not self.reachedLimit()))
if inc:
self.inc()
def inc(self):
self.value += self.diff