
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
smooth-text-animation
Advanced tools
Beautiful and smooth text animations for terminal output in Python.
pip install smooth-text-animation
from smooth_text_animation import animated_line, wave_text, blinking_text
# Typing effect
animated_line("Hello, World!", delay=0.1)
# Loading effect
wave_text("Loading", delay=0.3)
# Blinking warning
blinking_text("Warning!", repeat=5, delay=0.5)
from smooth_text_animation import animated_line
animated_line("This text appears character by character!", delay=0.05)
from smooth_text_animation import animated_line_dual
animated_line_dual("Text appears from both sides!", delay=0.1)
from smooth_text_animation import fade_in_text
fade_in_text("This text fades in gradually!", delay=0.2)
from smooth_text_animation import marquee_text
marquee_text("This text scrolls across the screen!", width=30, delay=0.1)
from smooth_text_animation import wave_text
wave_text("Loading", delay=0.3, repeat=3)
from smooth_text_animation import blinking_text
blinking_text("ALERT!", repeat=5, delay=0.3)
from smooth_text_animation import random_fill
random_fill("Characters appear randomly!", delay=0.1)
from smooth_text_animation import reverse_text
reverse_text("Text appears from right to left!", delay=0.2)
from smooth_text_animation import rotate_text
rotate_text("Processing", delay=0.2, cycles=10)
from smooth_text_animation import combined_animation_simultaneous
combined_animation_simultaneous("Fade in and out!", delay=0.1)
Most functions accept these common parameters:
text (str): The text to animatedelay (float): Delay between animation steps in secondsrepeat (int): Number of times to repeat the animation (for some effects)from smooth_text_animation import wave_text
import time
for i in range(1, 6):
wave_text(f"Processing step {i}/5", delay=0.2, repeat=2)
time.sleep(1)
from smooth_text_animation import blinking_text
blinking_text("⚠️ System Alert!", repeat=3, delay=0.5)
from smooth_text_animation import animated_line_dual, fade_in_text
animated_line_dual("=== Welcome to My App ===", delay=0.05)
fade_in_text("Loading your dashboard...", delay=0.3)
MIT License - feel free to use in your projects!
Contributions are welcome! Please feel free to submit a Pull Request.
traitimtrongvag - tbinh831@gmail.com
Made with ❤️ for the Python community# smooth-text-animation
FAQs
Beautiful and smooth text animations for terminal output
We found that smooth-text-animation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.