pynimbar 1.1.1

Last updated:

0 purchases

pynimbar 1.1.1 Image
pynimbar 1.1.1 Images
Add to Cart

Description:

pynimbar 1.1.1

pynimbar
pynimbar is a Python package that provides a simple and customizable loading animation for console-based applications. The package allows you to create loading animations with custom text, as well as adjust the animation speed and style.
Installation
You can install pynimbar using pip:
pip install pynimbar

Usage
pynimbar provides a context manager that allows you to use the loading animation as a context manager. This can be useful if you want to ensure that the loading animation is automatically stopped when an error occurs or when your code finishes executing. For example:
from pynimbar import loading_animation
from time import sleep

with loading_animation('Processing data...'):
sleep(5)

Customization
You can customize the appearance and behavior of the loading animation using the following parameters:

text (str): The text to display during the animation.
success_msg (str, optional): The text to display when the animation is done. Defaults to 'ok'.
animation_frequency (float, optional): The frequency of the animation. Defaults to 0.1.
break_on_error (bool, optional): Whether to break on error. Defaults to True.
verbose_errors (bool, optional): Whether to print the error traceback. Defaults to False.
frames (str, optional): The frames of the animation. Defaults to '|/-\\'.
time_it (bool, optional): Whether to time the execution of the code block. Defaults to False.
time_it_live (bool, optional): Whether to print the live execution time of the code block. Defaults to False.

Contributing
If you have any suggestions or improvements for pynimbar, feel free to submit a pull request or open an issue on the GitHub repository. We appreciate any feedback or contributions!
Example

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.