/dports/devel/py-coloredlogs/coloredlogs-15.0/ |
H A D | CHANGELOG.rst | 33 .. _#89: https://github.com/xolox/python-coloredlogs/pull/89 41 .. _#88: https://github.com/xolox/python-coloredlogs/issues/88 171 :mod:`~coloredlogs.converter` module. 487 - https://github.com/xolox/python-coloredlogs/issues/14 488 - https://github.com/xolox/python-coloredlogs/issues/18 489 - https://github.com/xolox/python-coloredlogs/pull/21 490 - https://github.com/xolox/python-coloredlogs/pull/23 491 - https://github.com/xolox/python-coloredlogs/issues/24 542 - Replaced ``coloredlogs.readthedocs.org`` with ``coloredlogs.readthedocs.io`` everywhere. 800 Added ``coloredlogs.install()`` function. [all …]
|
H A D | README.rst | 1 coloredlogs: Colored terminal output for Python's logging module 24 `coloredlogs`). 37 $ pip install coloredlogs 64 import coloredlogs, logging 72 coloredlogs.install(level='DEBUG') 115 coloredlogs.install(milliseconds=True) 174 The ``coloredlogs`` program is installed when you install the `coloredlogs` 223 .. _ColoredCronMailer: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.converter.… 224 .. _ColoredFormatter: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.ColoredForm… 225 .. _coloredlogs.install(): https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.install [all …]
|
H A D | PKG-INFO | 2 Name: coloredlogs 5 Home-page: https://coloredlogs.readthedocs.io 32 `coloredlogs`). 45 $ pip install coloredlogs 72 import coloredlogs, logging 80 coloredlogs.install(level='DEBUG') 123 coloredlogs.install(milliseconds=True) 182 The ``coloredlogs`` program is installed when you install the `coloredlogs` 231 ….. _ColoredCronMailer: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.converter… 232 ….. _ColoredFormatter: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.ColoredFor… [all …]
|
H A D | MANIFEST.in | 3 include coloredlogs.pth
|
H A D | coloredlogs.pth | 1 import os; exec('try: __import__("coloredlogs").auto_install() if os.environ.get("COLOREDLOGS_AUTO_…
|
/dports/devel/py-coloredlogs/coloredlogs-15.0/docs/ |
H A D | api.rst | 5 the `coloredlogs` package. 8 :func:`~coloredlogs.install()`, :class:`~coloredlogs.ColoredFormatter` and 9 :func:`~coloredlogs.syslog.enable_system_logging()`. 11 The :mod:`coloredlogs` module 14 .. automodule:: coloredlogs 17 The :mod:`coloredlogs.converter` module 20 .. automodule:: coloredlogs.converter 23 The :mod:`coloredlogs.syslog` module 26 .. automodule:: coloredlogs.syslog
|
H A D | index.rst | 1 coloredlogs: Colored terminal output for Python's logging module 4 Welcome to the documentation of `coloredlogs` version |release|! The following
|
H A D | conf.py | 46 from coloredlogs import __version__ as coloredlogs_version # noqa
|
/dports/devel/py-coloredlogs/coloredlogs-15.0/coloredlogs.egg-info/ |
H A D | PKG-INFO | 2 Name: coloredlogs 5 Home-page: https://coloredlogs.readthedocs.io 32 `coloredlogs`). 45 $ pip install coloredlogs 72 import coloredlogs, logging 80 coloredlogs.install(level='DEBUG') 123 coloredlogs.install(milliseconds=True) 182 The ``coloredlogs`` program is installed when you install the `coloredlogs` 231 ….. _ColoredCronMailer: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.converter… 232 ….. _ColoredFormatter: https://coloredlogs.readthedocs.io/en/latest/api.html#coloredlogs.ColoredFor… [all …]
|
/dports/devel/py-coloredlogs/coloredlogs-15.0/coloredlogs/ |
H A D | demo.py | 14 import coloredlogs 33 defined_levels = coloredlogs.find_defined_levels() 34 normalizer = coloredlogs.NameNormalizer() 43 coloredlogs.install(level=os.environ.get('COLOREDLOGS_LOG_LEVEL', ordered_levels[0][1]))
|
H A D | tests.py | 26 import coloredlogs 27 import coloredlogs.cli 28 from coloredlogs import ( 48 from coloredlogs.demo import demonstrate_colored_logging 49 from coloredlogs.syslog import SystemLogging, is_syslog_supported, match_syslog_handler 50 from coloredlogs.converter import ( 89 coloredlogs.demo.DEMO_DELAY = 0 201 coloredlogs.install(syslog=True) 213 coloredlogs.install(syslog='error') 640 coloredlogs.cli.main()
|
H A D | cli.py | 53 from coloredlogs.converter import capture, convert 54 from coloredlogs.demo import demonstrate_colored_logging
|
H A D | syslog.py | 40 from coloredlogs import (
|
/dports/biology/py-multiqc/multiqc-1.10/multiqc/utils/ |
H A D | log.py | 7 import coloredlogs 46 level_styles = coloredlogs.DEFAULT_LEVEL_STYLES 52 … console.setFormatter(coloredlogs.ColoredFormatter(fmt=debug_template, level_styles=level_styles)) 57 … console.setFormatter(coloredlogs.ColoredFormatter(fmt=info_template, level_styles=level_styles))
|
/dports/textproc/py-ocrmypdf/ocrmypdf-12.7.2/src/ocrmypdf/ |
H A D | api.py | 26 import coloredlogs 28 coloredlogs = None variable 119 if not coloredlogs: 123 use_colors = coloredlogs.enable_ansi_support() 125 use_colors = coloredlogs.terminal_supports_colors() 127 formatter = coloredlogs.ColoredFormatter(fmt=fmt)
|
/dports/devel/py-coloredlogs/coloredlogs-15.0/docs/examples/ |
H A D | defaults.sh | 1 coloredlogs --demo
|
H A D | custom-log-format.sh | 2 coloredlogs --demo
|
H A D | custom-datetime-format.sh | 3 coloredlogs --demo
|
H A D | custom-colors.sh | 5 coloredlogs --demo
|
/dports/devel/py-coloredlogs/ |
H A D | .license-catalog.mk | 5 _LICENSE_DISTFILES=coloredlogs-15.0.tar.gz
|
/dports/textproc/py-humanfriendly/humanfriendly-10.0/docs/ |
H A D | conf.py | 69 coloredlogs=('https://coloredlogs.readthedocs.io/en/latest/', None),
|
/dports/textproc/py-ocrmypdf/ocrmypdf-12.7.2/ |
H A D | pyproject.toml | 80 'pluggy', 'tqdm', 'coloredlogs', 'img2pdf', 'cffi', '_cffi_backend', 'pdfminer.*', 'reportlab.*'
|
H A D | setup.cfg | 51 coloredlogs>=14.0 # strictly optional
|
/dports/textproc/py-humanfriendly/humanfriendly-10.0/humanfriendly/ |
H A D | testing.py | 79 import coloredlogs 80 coloredlogs.install(level=log_level)
|
/dports/textproc/py-humanfriendly/humanfriendly-10.0/ |
H A D | CHANGELOG.rst | 69 (I need this in an upcoming :pypi:`coloredlogs` release and don't want to have 262 from coloredlogs.syslog import enable_system_logging 263 File ".../coloredlogs/__init__.py", line 138, in <module> 306 my attention in `coloredlogs issue #71`_ and `coloredlogs pull request #72`_. 308 :pypi:`coloredlogs` package but eventually I moved the support for ANSI 324 .. _coloredlogs issue #71: https://github.com/xolox/python-coloredlogs/issues/71 565 - Add ``license`` key to ``setup.py`` script (pointed out to me in `coloredlogs 566 pull request #53 <https://github.com/xolox/python-coloredlogs/pull/53>`_). 582 `issue #55 of coloredlogs <https://github.com/xolox/python-coloredlogs/issues/55>`_. 624 on the coloredlogs issue tracker <https://github.com/xolox/python-coloredlogs/issues/35>`_). [all …]
|