-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
2,751 additions
and
8,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION=1.4.0 | ||
VERSION=1.4.1 | ||
PYPI_USERNAME=__token__ | ||
PYPI_PASSWORD= #api token | ||
PYPI_PASSWORD_DEV= #api token | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.4.0' | ||
__version__ = '1.4.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,114 +1,13 @@ | ||
# ----------------------------------------------------------------------------- | ||
# pytermor [ANSI formatted terminal output toolset] | ||
# (c) 2022-2023. A. Shavykin <0.delameter@gmail.com> | ||
# (c) 2022. A. Shavykin <0.delameter@gmail.com> | ||
# ----------------------------------------------------------------------------- | ||
import os | ||
from .ansi import IntCodes, Seqs, Spans, SequenceSGR, Span, NOOP_SEQ, NOOP_SPAN | ||
from .color import Colors, ColorIndexed16, ColorIndexed256, ColorRGB, NOOP_COLOR | ||
from .render import Styles, Style, Text, SgrRenderer, RendererManager, NOOP_STYLE | ||
from ._version import __version__ | ||
|
||
from ._version import __version__ as __version__ | ||
from .common import CDT as CDT | ||
from .common import FT as FT | ||
from .common import RT as RT | ||
from .common import logger as logger | ||
from .common import Align as Align | ||
from .common import ArgCountError as ArgCountError | ||
from .common import ArgTypeError as ArgTypeError | ||
from .common import ConflictError as ConflictError | ||
from .common import LogicError as LogicError | ||
from .common import UserAbort as UserAbort | ||
from .common import UserCancel as UserCancel | ||
import logging | ||
from logging import NullHandler | ||
|
||
from .ansi import NOOP_SEQ as NOOP_SEQ | ||
from .ansi import IntCode as IntCode | ||
from .ansi import SeqIndex as SeqIndex | ||
from .ansi import ISequence as ISequence | ||
from .ansi import SequenceSGR as SequenceSGR | ||
from .ansi import enclose as enclose | ||
from .ansi import get_closing_seq as get_closing_seq | ||
from .ansi import make_color_256 as make_color_256 | ||
from .ansi import make_color_rgb as make_color_rgb | ||
from .color import NOOP_COLOR as NOOP_COLOR | ||
from .color import IColor as IColor | ||
from .color import Color16 as Color16 | ||
from .color import Color256 as Color256 | ||
from .color import ColorRGB as ColorRGB | ||
from .color import ApxResult as ApxResult | ||
from .color import approximate as approximate | ||
from .color import find_closest as find_closest | ||
from .color import resolve_color as resolve_color | ||
from .color import hex_to_rgb as hex_to_rgb | ||
from .color import hex_to_hsv as hex_to_hsv | ||
from .color import rgb_to_hex as rgb_to_hex | ||
from .cval import CVAL as cv | ||
from .style import NOOP_STYLE as NOOP_STYLE | ||
from .style import Style as Style | ||
from .style import Styles as Styles | ||
from .style import make_style as make_style | ||
from .style import merge_styles as merge_styles | ||
from .renderer import IRenderer as IRenderer | ||
from .renderer import HtmlRenderer as HtmlRenderer | ||
from .renderer import RendererManager as RendererManager | ||
from .renderer import SgrRenderer as SgrRenderer | ||
from .renderer import TmuxRenderer as TmuxRenderer | ||
from .renderer import OutputMode as OutputMode | ||
from .text import IRenderable as IRenderable | ||
from .text import Fragment as Fragment | ||
from .text import FrozenText as FrozenText | ||
from .text import SimpleTable as SimpleTable | ||
from .text import Text as Text | ||
from .text import TemplateEngine as TemplateEngine | ||
from .text import echo as echo | ||
from .text import echoi as echoi | ||
from .text import render as render | ||
from .text import distribute_padded as distribute_padded | ||
from .utilmisc import confirm as confirm | ||
from .utilmisc import get_char_width as get_char_width | ||
from .utilmisc import get_preferable_wrap_width as get_preferable_wrap_width | ||
from .utilmisc import get_qname as get_qname | ||
from .utilmisc import get_terminal_width as get_terminal_width | ||
from .utilmisc import guess_char_width as guess_char_width | ||
from .utilmisc import measure_char_width as measure_char_width | ||
from .utilmisc import total_size as total_size | ||
from .utilmisc import wait_key as wait_key | ||
from .utilnum import NumHighlighter as NumHighlighter | ||
from .utilnum import StaticBaseFormatter as StaticBaseFormatter | ||
from .utilnum import DynamicBaseFormatter as DynamicBaseFormatter | ||
from .utilnum import CustomBaseUnit as CustomBaseUnit | ||
from .utilnum import format_auto_float as format_auto_float | ||
from .utilnum import format_thousand_sep as format_thousand_sep | ||
from .utilnum import format_si as format_si | ||
from .utilnum import format_si_binary as format_si_binary | ||
from .utilnum import format_time_delta as format_time_delta | ||
from .utilstr import ESCAPE_SEQ_REGEX as ESCAPE_SEQ_REGEX | ||
from .utilstr import SGR_SEQ_REGEX as SGR_SEQ_REGEX | ||
from .utilstr import CSI_SEQ_REGEX as CSI_SEQ_REGEX | ||
from .utilstr import CONTROL_CHARS as CONTROL_CHARS | ||
from .utilstr import WHITESPACE_CHARS as WHITESPACE_CHARS | ||
from .utilstr import PRINTABLE_CHARS as PRINTABLE_CHARS | ||
from .utilstr import NON_ASCII_CHARS as NON_ASCII_CHARS | ||
from .utilstr import IFilter as IFilter | ||
from .utilstr import BytesTracer as BytesTracer | ||
from .utilstr import CsiStringReplacer as CsiStringReplacer | ||
from .utilstr import EscSeqStringReplacer as EscSeqStringReplacer | ||
from .utilstr import NonPrintsOmniVisualizer as NonPrintsOmniVisualizer | ||
from .utilstr import NonPrintsStringVisualizer as NonPrintsStringVisualizer | ||
from .utilstr import NoopFilter as NoopFilter | ||
from .utilstr import OmniDecoder as OmniDecoder | ||
from .utilstr import OmniEncoder as OmniEncoder | ||
from .utilstr import OmniMapper as OmniMapper | ||
from .utilstr import OmniSanitizer as OmniSanitizer | ||
from .utilstr import SgrStringReplacer as SgrStringReplacer | ||
from .utilstr import StringTracer as StringTracer | ||
from .utilstr import StringMapper as StringMapper | ||
from .utilstr import StringReplacer as StringReplacer | ||
from .utilstr import StringUcpTracer as StringUcpTracer | ||
from .utilstr import TracerExtra as TracerExtra | ||
from .utilstr import pad as pad | ||
from .utilstr import padv as padv | ||
from .utilstr import ljust_sgr as ljust_sgr | ||
from .utilstr import rjust_sgr as rjust_sgr | ||
from .utilstr import center_sgr as center_sgr | ||
from .utilstr import wrap_sgr as wrap_sgr | ||
from .utilstr import apply_filters as apply_filters | ||
from .utilstr import dump as dump | ||
|
||
PYTERMOR_DEV = os.environ.get('PYTERMOR_DEV', False) | ||
logging.getLogger(__name__).addHandler(NullHandler()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# ----------------------------------------------------------------------------- | ||
# pytermor [ANSI formatted terminal output toolset] | ||
# (c) 2022-2023. A. Shavykin <0.delameter@gmail.com> | ||
# (c) 2022. A. Shavykin <0.delameter@gmail.com> | ||
# ----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ----------------------------------------------------------------------------- | ||
# pytermor [ANSI formatted terminal output toolset] | ||
# (c) 2022-2023. A. Shavykin <0.delameter@gmail.com> | ||
# (c) 2022. A. Shavykin <0.delameter@gmail.com> | ||
# ----------------------------------------------------------------------------- | ||
__version__ = '2.35.1-dev1' | ||
__version__ = '2.1.0-dev15' |
Oops, something went wrong.