List of all classes, functions and methods in python-igraph
class ProgressBar:
A 2-line progress bar, which looks like:
Header 20% [===========----------------------------------]
The progress bar is colored, if the terminal supports color output; and adjusts to the width of the terminal.
Class Variable | BAR |
Undocumented |
Class Variable | HEADER |
Undocumented |
Method | __init__ |
Undocumented |
Instance Variable | term |
Undocumented |
Instance Variable | width |
Undocumented |
Instance Variable | progress_bar |
Undocumented |
Instance Variable | header |
Undocumented |
Instance Variable | cleared |
Undocumented |
Instance Variable | last_percent |
Undocumented |
Instance Variable | last_message |
Undocumented |
Method | update |
Updates the progress bar. |
Method | update_message |
Updates the message of the progress bar. |
Method | clear |
Clears the progress bar (i.e. removes it from the screen) |
Updates the progress bar.
Parameters | percent | the percentage to be shown. If None , the previous value will be used. |
message | the message to be shown above the progress bar. If None , the previous message will be used. |