๐ป terminal
Terminal Control & Colors
77 functions
703 lines
ANSI
๐ Overview
Terminal manipulation: colors, cursor control, screen clearing, raw mode, progress bars.
๐ Quick Start
import terminal as term
term.clear()
term.move_cursor(5, 10)
println(term.red("Error: File not found"))
println(term.bold(term.green("Success!")))