Whenever I try to use termcolor to make blinking text, using the following code:
from termcolor import colored, cprint
cprint('\nJames Everleigh', 'red', attrs=['blink'])
It prints the text red, but it doesn't blink. Is there some function that I need to use to turn the blinking on/something like that?
I use replit.com which is using python 3.8.2. I've also tried Visual Studio but it still doesn't blink.
You can use the curses library to do some cool stuff inside a terminal (only for Linux).
Here is the documentation : https://docs.python.org/3.7/howto/curses.html