Cinematic terminal effects for Python
Glitch • Animations • Hacker UI • Gradient text • Loading effects
GhostPrint is a lightweight Python library for creating cinematic and hacker-style terminal experiences.
It focuses on making CLI output more expressive, animated, and visually engaging without external dependencies.
pip install ghostprintfrom ghostprint import *
from ghostprint.colors import gradient
banner("GhostPrint")
typewrite("Connecting to DarkLine Network...", 0.02)
loading("Authenticating", 2)
print()
print(gradient("ACCESS GRANTED"))
print()
glitch("WELCOME BACK, ALI")
print()
box("github.com/MRThugh")████████████████████
███ GhostPrint ███
████████████████████
Connecting to DarkLine Network...
Authenticating ✓
ACCESS GRANTED
WELCOME BACK, ALI
┌────────────────────┐
│ github.com/MRThugh │
└────────────────────┘
- 👾 Glitch text effects
- ⌨️ Typewriter animation
- ⏳ Loading spinners
- 🌈 Gradient text output
- 📦 Terminal boxes & banners
- 🧠 Zero dependencies
- ⚡ Lightweight & fast
Creates a glitch animation effect.
glitch("ACCESS GRANTED")Simulates typing effect.
typewrite("Hello World", 0.03)Displays animated loading spinner.
loading("Loading", 3)Displays a cinematic banner.
banner("GhostPrint")Draws a terminal box.
box("MRThugh")Applies color gradient effect.
print(gradient("GhostPrint"))git clone https://github.com/MRThugh/ghostprint.git
cd ghostprint
pip install .- 🐍 PyPI: https://pypi.org/project/ghostprint/
- 💻 GitHub: https://github.com/MRThugh
Ali Kamrani
- GitHub: https://github.com/MRThugh
- Email: kamrani.exe@gmail.com
This project is licensed under the MIT License.