Decorators for terminal-based wait animations.
Project description
terminal_animation
A simple package to make beautiful terminal wait animations
Install
pip install terminal_animation
How to use
import animations
import time
# 1 use as class
wait_animation = animations.Wait()
wait_animation.start()
do_something()
wait_animation.end()
#2 use as decorator
@animations.wait()
def do_something_else():
# long function
time.sleep(5)
Customization
The package uses a default animation with dots. It allows uses to customize the the animation with different parameters.
The default settings are:
color: white
speed: 0.2
animation = [' ','. ','.. ','... ','....']
Color
The color of the characters. Available options are:
- black ...
- red ...
- green ...
- yellow ...
- blue ...
- magenta ...
- cyan ...
- white ...
Speed
The speed between, the animation states.
0 < speed < 1
Animation
To use a custom animation, you have to pass a string array containing the seperate steps of the animation. For example, a simple clock animation would look like this
clock = ['-','\\','|','/']
@animation.wait(clock)
def do_something():
# long function
Examples
# default animation (white, dots, default speed)
@animation.wait()
def default():
time.sleep(10)
# clock animation (white, default speed)
clock = ['-','\\','|','/']
@animation.wait(clock)
def do_something():
time.sleep(10)
# horizontal line animation (blue, default speed)
lines = [' ','- ','-- ','---']
@animation.wait(lines, color="blue")
def do_something_else():
time.sleep(10)
# hashtag animation (cyan, slow)
tags = ["# ", "## ", "### ", "####"]
animation = animations.Wait(tags, color="blue", speed=0.5)
animation.start()
time.sleep(4)
animation.stop()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file terminal_animation-0.3-py3-none-any.whl
.
File metadata
- Download URL: terminal_animation-0.3-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5411e8c466f35fae3a17ffca7f11506162139a6ca0967434052d21390adab0ef |
|
MD5 | ef7bfeefbadf3886481d64105c69282b |
|
BLAKE2b-256 | 23eb59c1992984288c654b84729fb4eb3b1fdf87de81c87c56550ec2d2832357 |