mirror of
https://github.com/verigak/progress.git
synced 2025-12-08 19:33:24 +00:00
Compare commits
39 Commits
1.4
...
200e1f44da
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
200e1f44da | ||
|
|
715467d4d0 | ||
|
|
1f658bc627 | ||
|
|
eebaa99c82 | ||
|
|
52de04b95d | ||
|
|
bdce3afb5e | ||
|
|
0a5fc077b2 | ||
|
|
3beeeb7716 | ||
|
|
e3dbaf52e1 | ||
|
|
ca6310204e | ||
|
|
b8fdfc782d | ||
|
|
0faea87060 | ||
|
|
64671e1ceb | ||
|
|
12e46ed702 | ||
|
|
d325dab247 | ||
|
|
e5c2368c6b | ||
|
|
03d4adbf73 | ||
|
|
42fd17f67c | ||
|
|
0d93258f52 | ||
|
|
4af220e573 | ||
|
|
25cefd12db | ||
|
|
1ed414290f | ||
|
|
f6390b76f2 | ||
|
|
80a91b9c78 | ||
|
|
57a36d49f2 | ||
|
|
efeb57282b | ||
|
|
61627a8642 | ||
|
|
c1e07104e1 | ||
|
|
326413a271 | ||
|
|
1b326504ce | ||
|
|
b95b764e37 | ||
|
|
2eeff94083 | ||
|
|
8cf7faa4e3 | ||
|
|
4b7c9388f4 | ||
|
|
d9d40736d6 | ||
|
|
d407334bcf | ||
|
|
086cfd5599 | ||
|
|
6553b7b207 | ||
|
|
1f19b5b61c |
2
LICENSE
2
LICENSE
@@ -1,4 +1,4 @@
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
# Copyright (c) 2012 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
include README.rst LICENSE
|
||||
23
README.rst
23
README.rst
@@ -6,6 +6,7 @@ Easy progress reporting for Python
|
||||
|demo|
|
||||
|
||||
.. |pypi| image:: https://img.shields.io/pypi/v/progress.svg
|
||||
:target: https://pypi.org/project/progress/
|
||||
.. |demo| image:: https://raw.github.com/verigak/progress/master/demo.gif
|
||||
:alt: Demo
|
||||
|
||||
@@ -34,6 +35,17 @@ To use them, just call ``next`` to advance and ``finish`` to finish:
|
||||
bar.next()
|
||||
bar.finish()
|
||||
|
||||
or use any bar of this class as a context manager:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
from progress.bar import Bar
|
||||
|
||||
with Bar('Processing', max=20) as bar:
|
||||
for i in range(20):
|
||||
# Do some work
|
||||
bar.next()
|
||||
|
||||
The result will be a bar like the following: ::
|
||||
|
||||
Processing |############# | 42/100
|
||||
@@ -74,7 +86,7 @@ eta avg * remaining
|
||||
eta_td eta as a timedelta (useful for printing as a string)
|
||||
========== ================================
|
||||
|
||||
Instead of passing all configuration options on instatiation, you can create
|
||||
Instead of passing all configuration options on instantiation, you can create
|
||||
your custom subclass:
|
||||
|
||||
.. code-block:: python
|
||||
@@ -117,6 +129,15 @@ There are 5 predefined spinners:
|
||||
- ``LineSpinner``
|
||||
- ``PixelSpinner``
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
Download from PyPi
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
pip install progress
|
||||
|
||||
|
||||
Other
|
||||
=====
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
# Copyright (c) 2012 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -12,31 +12,54 @@
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import division, print_function
|
||||
|
||||
from collections import deque
|
||||
from datetime import timedelta
|
||||
from math import ceil
|
||||
from sys import stderr
|
||||
from time import time
|
||||
try:
|
||||
from time import monotonic
|
||||
except ImportError:
|
||||
from time import time as monotonic
|
||||
|
||||
|
||||
__version__ = '1.4'
|
||||
__version__ = '1.6.1'
|
||||
|
||||
HIDE_CURSOR = '\x1b[?25l'
|
||||
SHOW_CURSOR = '\x1b[?25h'
|
||||
|
||||
|
||||
class Infinite(object):
|
||||
file = stderr
|
||||
sma_window = 10 # Simple Moving Average window
|
||||
check_tty = True
|
||||
hide_cursor = True
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
def __init__(self, message='', **kwargs):
|
||||
self.index = 0
|
||||
self.start_ts = time()
|
||||
self.start_ts = monotonic()
|
||||
self.avg = 0
|
||||
self._avg_update_ts = self.start_ts
|
||||
self._ts = self.start_ts
|
||||
self._xput = deque(maxlen=self.sma_window)
|
||||
for key, val in kwargs.items():
|
||||
setattr(self, key, val)
|
||||
|
||||
self._max_width = 0
|
||||
self._hidden_cursor = False
|
||||
self.message = message
|
||||
|
||||
if self.file and self.is_tty():
|
||||
if self.hide_cursor:
|
||||
print(HIDE_CURSOR, end='', file=self.file)
|
||||
self._hidden_cursor = True
|
||||
self.writeln('')
|
||||
|
||||
def __del__(self):
|
||||
if self._hidden_cursor:
|
||||
print(SHOW_CURSOR, end='', file=self.file)
|
||||
|
||||
def __getitem__(self, key):
|
||||
if key.startswith('_'):
|
||||
return None
|
||||
@@ -44,7 +67,7 @@ class Infinite(object):
|
||||
|
||||
@property
|
||||
def elapsed(self):
|
||||
return int(time() - self.start_ts)
|
||||
return int(monotonic() - self.start_ts)
|
||||
|
||||
@property
|
||||
def elapsed_td(self):
|
||||
@@ -52,8 +75,14 @@ class Infinite(object):
|
||||
|
||||
def update_avg(self, n, dt):
|
||||
if n > 0:
|
||||
xput_len = len(self._xput)
|
||||
self._xput.append(dt / n)
|
||||
self.avg = sum(self._xput) / len(self._xput)
|
||||
now = monotonic()
|
||||
# update when we're still filling _xput, then after every second
|
||||
if (xput_len < self.sma_window or
|
||||
now - self._avg_update_ts > 1):
|
||||
self.avg = sum(self._xput) / len(self._xput)
|
||||
self._avg_update_ts = now
|
||||
|
||||
def update(self):
|
||||
pass
|
||||
@@ -61,11 +90,33 @@ class Infinite(object):
|
||||
def start(self):
|
||||
pass
|
||||
|
||||
def writeln(self, line):
|
||||
if self.file and self.is_tty():
|
||||
width = len(line)
|
||||
if width < self._max_width:
|
||||
# Add padding to cover previous contents
|
||||
line += ' ' * (self._max_width - width)
|
||||
else:
|
||||
self._max_width = width
|
||||
print('\r' + line, end='', file=self.file)
|
||||
self.file.flush()
|
||||
|
||||
def finish(self):
|
||||
pass
|
||||
if self.file and self.is_tty():
|
||||
print(file=self.file)
|
||||
if self._hidden_cursor:
|
||||
print(SHOW_CURSOR, end='', file=self.file)
|
||||
self._hidden_cursor = False
|
||||
|
||||
def is_tty(self):
|
||||
try:
|
||||
return self.file.isatty() if self.check_tty else True
|
||||
except AttributeError:
|
||||
msg = "%s has no attribute 'isatty'. Try setting check_tty=False." % self
|
||||
raise AttributeError(msg)
|
||||
|
||||
def next(self, n=1):
|
||||
now = time()
|
||||
now = monotonic()
|
||||
dt = now - self._ts
|
||||
self.update_avg(n, dt)
|
||||
self._ts = now
|
||||
@@ -73,12 +124,20 @@ class Infinite(object):
|
||||
self.update()
|
||||
|
||||
def iter(self, it):
|
||||
try:
|
||||
self.iter_value = None
|
||||
with self:
|
||||
for x in it:
|
||||
self.iter_value = x
|
||||
yield x
|
||||
self.next()
|
||||
finally:
|
||||
self.finish()
|
||||
del self.iter_value
|
||||
|
||||
def __enter__(self):
|
||||
self.start()
|
||||
return self
|
||||
|
||||
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||
self.finish()
|
||||
|
||||
|
||||
class Progress(Infinite):
|
||||
@@ -100,6 +159,8 @@ class Progress(Infinite):
|
||||
|
||||
@property
|
||||
def progress(self):
|
||||
if self.max == 0:
|
||||
return 0
|
||||
return min(1, self.index / self.max)
|
||||
|
||||
@property
|
||||
@@ -119,9 +180,10 @@ class Progress(Infinite):
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
try:
|
||||
self.iter_value = None
|
||||
with self:
|
||||
for x in it:
|
||||
self.iter_value = x
|
||||
yield x
|
||||
self.next()
|
||||
finally:
|
||||
self.finish()
|
||||
del self.iter_value
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
# Copyright (c) 2012 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -19,25 +19,24 @@ from __future__ import unicode_literals
|
||||
import sys
|
||||
|
||||
from . import Progress
|
||||
from .helpers import WritelnMixin
|
||||
from .colors import color
|
||||
|
||||
|
||||
class Bar(WritelnMixin, Progress):
|
||||
class Bar(Progress):
|
||||
width = 32
|
||||
message = ''
|
||||
suffix = '%(index)d/%(max)d'
|
||||
bar_prefix = ' |'
|
||||
bar_suffix = '| '
|
||||
empty_fill = ' '
|
||||
fill = '#'
|
||||
hide_cursor = True
|
||||
color = None
|
||||
|
||||
def update(self):
|
||||
filled_length = int(self.width * self.progress)
|
||||
empty_length = self.width - filled_length
|
||||
|
||||
message = self.message % self
|
||||
bar = self.fill * filled_length
|
||||
bar = color(self.fill * filled_length, fg=self.color)
|
||||
empty = self.empty_fill * empty_length
|
||||
suffix = self.suffix % self
|
||||
line = ''.join([message, self.bar_prefix, bar, empty, self.bar_suffix,
|
||||
@@ -77,7 +76,7 @@ class IncrementalBar(Bar):
|
||||
nempty = self.width - nfull # Number of empty chars
|
||||
|
||||
message = self.message % self
|
||||
bar = self.phases[-1] * nfull
|
||||
bar = color(self.phases[-1] * nfull, fg=self.color)
|
||||
current = self.phases[phase] if phase > 0 else ''
|
||||
empty = self.empty_fill * max(0, nempty - len(current))
|
||||
suffix = self.suffix % self
|
||||
|
||||
79
progress/colors.py
Normal file
79
progress/colors.py
Normal file
@@ -0,0 +1,79 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2020 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
from functools import partial
|
||||
|
||||
|
||||
COLORS = ('black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan',
|
||||
'white')
|
||||
STYLES = ('bold', 'faint', 'italic', 'underline', 'blink', 'blink2',
|
||||
'negative', 'concealed', 'crossed')
|
||||
|
||||
|
||||
def color(s, fg=None, bg=None, style=None):
|
||||
sgr = []
|
||||
|
||||
if fg:
|
||||
if fg in COLORS:
|
||||
sgr.append(str(30 + COLORS.index(fg)))
|
||||
elif isinstance(fg, int) and 0 <= fg <= 255:
|
||||
sgr.append('38;5;%d' % int(fg))
|
||||
else:
|
||||
raise Exception('Invalid color "%s"' % fg)
|
||||
|
||||
if bg:
|
||||
if bg in COLORS:
|
||||
sgr.append(str(40 + COLORS.index(bg)))
|
||||
elif isinstance(bg, int) and 0 <= bg <= 255:
|
||||
sgr.append('48;5;%d' % bg)
|
||||
else:
|
||||
raise Exception('Invalid color "%s"' % bg)
|
||||
|
||||
if style:
|
||||
for st in style.split('+'):
|
||||
if st in STYLES:
|
||||
sgr.append(str(1 + STYLES.index(st)))
|
||||
else:
|
||||
raise Exception('Invalid style "%s"' % st)
|
||||
|
||||
if sgr:
|
||||
prefix = '\x1b[' + ';'.join(sgr) + 'm'
|
||||
suffix = '\x1b[0m'
|
||||
return prefix + s + suffix
|
||||
else:
|
||||
return s
|
||||
|
||||
|
||||
# Foreground shortcuts
|
||||
black = partial(color, fg='black')
|
||||
red = partial(color, fg='red')
|
||||
green = partial(color, fg='green')
|
||||
yellow = partial(color, fg='yellow')
|
||||
blue = partial(color, fg='blue')
|
||||
magenta = partial(color, fg='magenta')
|
||||
cyan = partial(color, fg='cyan')
|
||||
white = partial(color, fg='white')
|
||||
|
||||
# Style shortcuts
|
||||
bold = partial(color, style='bold')
|
||||
faint = partial(color, style='faint')
|
||||
italic = partial(color, style='italic')
|
||||
underline = partial(color, style='underline')
|
||||
blink = partial(color, style='blink')
|
||||
blink2 = partial(color, style='blink2')
|
||||
negative = partial(color, style='negative')
|
||||
concealed = partial(color, style='concealed')
|
||||
crossed = partial(color, style='crossed')
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
# Copyright (c) 2012 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -16,32 +16,31 @@
|
||||
|
||||
from __future__ import unicode_literals
|
||||
from . import Infinite, Progress
|
||||
from .helpers import WriteMixin
|
||||
|
||||
|
||||
class Counter(WriteMixin, Infinite):
|
||||
message = ''
|
||||
hide_cursor = True
|
||||
|
||||
class Counter(Infinite):
|
||||
def update(self):
|
||||
self.write(str(self.index))
|
||||
message = self.message % self
|
||||
line = ''.join([message, str(self.index)])
|
||||
self.writeln(line)
|
||||
|
||||
|
||||
class Countdown(WriteMixin, Progress):
|
||||
hide_cursor = True
|
||||
|
||||
class Countdown(Progress):
|
||||
def update(self):
|
||||
self.write(str(self.remaining))
|
||||
message = self.message % self
|
||||
line = ''.join([message, str(self.remaining)])
|
||||
self.writeln(line)
|
||||
|
||||
|
||||
class Stack(WriteMixin, Progress):
|
||||
class Stack(Progress):
|
||||
phases = (' ', '▁', '▂', '▃', '▄', '▅', '▆', '▇', '█')
|
||||
hide_cursor = True
|
||||
|
||||
def update(self):
|
||||
nphases = len(self.phases)
|
||||
i = min(nphases - 1, int(self.progress * nphases))
|
||||
self.write(self.phases[i])
|
||||
message = self.message % self
|
||||
line = ''.join([message, self.phases[i]])
|
||||
self.writeln(line)
|
||||
|
||||
|
||||
class Pie(Stack):
|
||||
|
||||
@@ -1,91 +0,0 @@
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
|
||||
HIDE_CURSOR = '\x1b[?25l'
|
||||
SHOW_CURSOR = '\x1b[?25h'
|
||||
|
||||
|
||||
class WriteMixin(object):
|
||||
hide_cursor = False
|
||||
|
||||
def __init__(self, message=None, **kwargs):
|
||||
super(WriteMixin, self).__init__(**kwargs)
|
||||
self._width = 0
|
||||
if message:
|
||||
self.message = message
|
||||
|
||||
if self.file and self.file.isatty():
|
||||
if self.hide_cursor:
|
||||
print(HIDE_CURSOR, end='', file=self.file)
|
||||
print(self.message, end='', file=self.file)
|
||||
self.file.flush()
|
||||
|
||||
def write(self, s):
|
||||
if self.file and self.file.isatty():
|
||||
b = '\b' * self._width
|
||||
c = s.ljust(self._width)
|
||||
print(b + c, end='', file=self.file)
|
||||
self._width = max(self._width, len(s))
|
||||
self.file.flush()
|
||||
|
||||
def finish(self):
|
||||
if self.file and self.file.isatty() and self.hide_cursor:
|
||||
print(SHOW_CURSOR, end='', file=self.file)
|
||||
|
||||
|
||||
class WritelnMixin(object):
|
||||
hide_cursor = False
|
||||
|
||||
def __init__(self, message=None, **kwargs):
|
||||
super(WritelnMixin, self).__init__(**kwargs)
|
||||
if message:
|
||||
self.message = message
|
||||
|
||||
if self.file and self.file.isatty() and self.hide_cursor:
|
||||
print(HIDE_CURSOR, end='', file=self.file)
|
||||
|
||||
def clearln(self):
|
||||
if self.file and self.file.isatty():
|
||||
print('\r\x1b[K', end='', file=self.file)
|
||||
|
||||
def writeln(self, line):
|
||||
if self.file and self.file.isatty():
|
||||
self.clearln()
|
||||
print(line, end='', file=self.file)
|
||||
self.file.flush()
|
||||
|
||||
def finish(self):
|
||||
if self.file and self.file.isatty():
|
||||
print(file=self.file)
|
||||
if self.hide_cursor:
|
||||
print(SHOW_CURSOR, end='', file=self.file)
|
||||
|
||||
|
||||
from signal import signal, SIGINT
|
||||
from sys import exit
|
||||
|
||||
|
||||
class SigIntMixin(object):
|
||||
"""Registers a signal handler that calls finish on SIGINT"""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(SigIntMixin, self).__init__(*args, **kwargs)
|
||||
signal(SIGINT, self._sigint_handler)
|
||||
|
||||
def _sigint_handler(self, signum, frame):
|
||||
self.finish()
|
||||
exit(0)
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
|
||||
# Copyright (c) 2012 Georgios Verigakis <verigak@gmail.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -16,17 +16,17 @@
|
||||
|
||||
from __future__ import unicode_literals
|
||||
from . import Infinite
|
||||
from .helpers import WriteMixin
|
||||
|
||||
|
||||
class Spinner(WriteMixin, Infinite):
|
||||
message = ''
|
||||
class Spinner(Infinite):
|
||||
phases = ('-', '\\', '|', '/')
|
||||
hide_cursor = True
|
||||
|
||||
def update(self):
|
||||
i = self.index % len(self.phases)
|
||||
self.write(self.phases[i])
|
||||
message = self.message % self
|
||||
line = ''.join([message, self.phases[i]])
|
||||
self.writeln(line)
|
||||
|
||||
|
||||
class PieSpinner(Spinner):
|
||||
@@ -40,5 +40,6 @@ class MoonSpinner(Spinner):
|
||||
class LineSpinner(Spinner):
|
||||
phases = ['⎺', '⎻', '⎼', '⎽', '⎼', '⎻']
|
||||
|
||||
|
||||
class PixelSpinner(Spinner):
|
||||
phases = ['⣾','⣷', '⣯', '⣟', '⡿', '⢿', '⣻', '⣽']
|
||||
phases = ['⣾', '⣷', '⣯', '⣟', '⡿', '⢿', '⣻', '⣽']
|
||||
|
||||
39
pyproject.toml
Normal file
39
pyproject.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
[build-system]
|
||||
requires = ["setuptools >= 77.0.3"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "progress"
|
||||
dynamic = ["version"]
|
||||
description = "Easy to use progress bars"
|
||||
readme = "README.rst"
|
||||
authors = [{ name = "Georgios Verigakis", email = "verigak@gmail.com" }]
|
||||
maintainers = [{ name = "Georgios Verigakis", email = "verigak@gmail.com" }]
|
||||
license = "ISC"
|
||||
license-files = ["LICENSE"]
|
||||
requires-python = ">=3.6"
|
||||
|
||||
keywords = ["progress", "bar"]
|
||||
classifiers = [
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/verigak/progress/"
|
||||
Repository = "https://github.com/verigak/progress.git"
|
||||
Issues = "https://github.com/verigak/progress/issues"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["progress"]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "progress.__version__"}
|
||||
29
setup.py
29
setup.py
@@ -1,29 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
import progress
|
||||
|
||||
|
||||
setup(
|
||||
name='progress',
|
||||
version=progress.__version__,
|
||||
description='Easy to use progress bars',
|
||||
long_description=open('README.rst').read(),
|
||||
author='Giorgos Verigakis',
|
||||
author_email='verigak@gmail.com',
|
||||
url='http://github.com/verigak/progress/',
|
||||
license='ISC',
|
||||
packages=['progress'],
|
||||
classifiers=[
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: ISC License (ISCL)',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
]
|
||||
)
|
||||
@@ -11,6 +11,7 @@ from progress.bar import (Bar, ChargingBar, FillingSquaresBar,
|
||||
from progress.spinner import (Spinner, PieSpinner, MoonSpinner, LineSpinner,
|
||||
PixelSpinner)
|
||||
from progress.counter import Counter, Countdown, Stack, Pie
|
||||
from progress.colors import bold
|
||||
|
||||
|
||||
def sleep():
|
||||
@@ -20,26 +21,29 @@ def sleep():
|
||||
|
||||
|
||||
for bar_cls in (Bar, ChargingBar, FillingSquaresBar, FillingCirclesBar):
|
||||
suffix = '%(index)d/%(max)d [%(elapsed)d / %(eta)d / %(eta_td)s]'
|
||||
suffix = '%(index)d/%(max)d [%(elapsed)d / %(eta)d / %(eta_td)s] (%(iter_value)s)'
|
||||
bar = bar_cls(bar_cls.__name__, suffix=suffix)
|
||||
for i in bar.iter(range(200)):
|
||||
for i in bar.iter(range(200, 400)):
|
||||
sleep()
|
||||
|
||||
for bar_cls in (IncrementalBar, PixelBar, ShadyBar):
|
||||
suffix = '%(percent)d%% [%(elapsed_td)s / %(eta)d / %(eta_td)s]'
|
||||
bar = bar_cls(bar_cls.__name__, suffix=suffix)
|
||||
for i in bar.iter(range(200)):
|
||||
sleep()
|
||||
with bar_cls(bar_cls.__name__, suffix=suffix, max=200) as bar:
|
||||
for i in range(200):
|
||||
bar.next()
|
||||
sleep()
|
||||
|
||||
bar = IncrementalBar(bold('Colored'), color='green')
|
||||
for i in bar.iter(range(200)):
|
||||
sleep()
|
||||
|
||||
for spin in (Spinner, PieSpinner, MoonSpinner, LineSpinner, PixelSpinner):
|
||||
for i in spin(spin.__name__ + ' ').iter(range(100)):
|
||||
for i in spin(spin.__name__ + ' %(index)d ').iter(range(100)):
|
||||
sleep()
|
||||
print()
|
||||
|
||||
for singleton in (Counter, Countdown, Stack, Pie):
|
||||
for i in singleton(singleton.__name__ + ' ').iter(range(100)):
|
||||
sleep()
|
||||
print()
|
||||
|
||||
bar = IncrementalBar('Random', suffix='%(index)d')
|
||||
for i in range(100):
|
||||
|
||||
Reference in New Issue
Block a user