cozyweboob/tools/progress.py
Phyks (Lucas Verney) 6fb8a24e48 Continue weboob wrapper
* Export full absolute URLs in resulting JSON.
* Export session cookies in resulting JSON, to download required files
on Cozy side.
* Add comments in the code.
2016-09-30 05:03:09 +02:00

15 lines
227 B
Python

"""
Miscellaneous progress functions.
"""
class DummyProgress:
"""
Dummy progress bar, to disable it.
"""
def progress(self, *args):
"""
Progress function. Do nothing.
"""
pass