Stream Preroll Animation for Python
Project description
Terminal Preroll Animation in Python
terminal-preroll
is a small, configurable python module for displaying a visually-pleasing, simplistic terminal animation in the style of a "loading screen", intended for use with small games or as a pre-roll animation for a livestream or video; thus the name. The script requires and accepts only three pieces of information:
- the location of a file telling it how to draw its banner;
- the location of a file telling it where to find text for the loading screen itself (the "hype" file), and;
- the amount of time, in minutes, you want it to last for.
The banner and hype files are simple json files, easily-edited, and the script itself handles sizing itself dynamically for your terminal window by use of the python package blessings
, with colours provided by termcolor
.
How to install
If you're running python3 on most systems, you can install the package with the following command:
pip3 install terminal-preroll
You will also need to either download (from this repo) or create a banner file and hype file.
How to run
Assuming you have your banner and hype files, you can run the script very easily from the command line:
python3 -m terminal-preroll -t 15 -b banner.json -s hype.json
Where:
-t
is an argument giving the time-to-run in minutes-b
is an argument giving the path to the banner object-s
is an argument giving the path to the hype object.
Modifying the Banner Object
The banner file is a json object, of the rough structure below:
- a "banner_strings" attribute, itself an array of strings, each representing one line of the banner.
- a "line_colors" attribute, an array of strings giving a valid terminal color to each line. If there are less entries in this array than lines in banner_strings, the default terminal colour is used.
Note: Much like python, the json standard requires two particular characters be "escaped" by adding an extra \
before them in the strings in banner_strings. This is important if you are using ASCII art, such as in the example below. In your ASCII art, replace \
with \\
and "
with \"
to account for this.
Modifying the Hype Object
The hype object is very simple - it's just an object of arrays. The "name" of each array is used as the value of phase
as in the example screenshot, while the strings in each phase's array are scrolled on the bottom as they "complete".
The script uses the total number of lines in this object and the time the animation is expected to last to determine how often to scroll the screen and how quickly to update the "current item" loading bar.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for terminal_preroll-1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cfe4abe789b0ab01a1ec3a4cdf8f2561756319aeec5cb59d6754fe58793e22d |
|
MD5 | 704747f5c14585fc0cc4062c40d66814 |
|
BLAKE2b-256 | 723777a529f5ea7cc908cbd8a51aa2732b8998d6b6e5c29ca5a28ddd87fda46a |