I'm trying to get a text blink in python . I found this method:
from termcolor import colored, cprint
cprint('\nJames Everleigh', 'red', attrs=['blink'])
but when i compile it i get some sort weird text:
""[5m[31m
James Everleigh[0m ""
What do I need to use to get the desired output?