[go: up one dir, main page]

File: __init__.py

package info (click to toggle)
colored 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: python: 2,064; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 374 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from .colored import (
    Colored,
    fore, back, style,
    fore_rgb, back_rgb,
    fg, bg, attr, stylize,
    stylize_interactive, set_tty_aware
)

from .cprint import cprint
from .foreground import Fore
from .background import Back
from .attributes import Style
from .controls import Controls


__version__: str = '2.2.4'