File: __init__.pyi

package info (click to toggle)
python-clevercsv 0.8.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,080 kB
  • sloc: python: 6,211; ansic: 870; makefile: 90
file content (22 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from typing import Any

__ALL__: Any
VERSION: Any
ATTRIBUTES: Any
HIGHLIGHTS: Any
COLORS: Any
RESET: str

def colored(
    text,
    color: Any | None = ...,
    on_color: Any | None = ...,
    attrs: Any | None = ...,
): ...
def cprint(
    text,
    color: Any | None = ...,
    on_color: Any | None = ...,
    attrs: Any | None = ...,
    **kwargs
) -> None: ...