https://github.com/cielquan/py-devtools-builtin
Add devtools.debug() to python builtins
https://github.com/cielquan/py-devtools-builtin
builtin debugging python python-devtools
Last synced: 11 months ago
JSON representation
Add devtools.debug() to python builtins
- Host: GitHub
- URL: https://github.com/cielquan/py-devtools-builtin
- Owner: Cielquan
- License: unlicense
- Created: 2021-01-04T17:51:17.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T08:22:36.000Z (over 3 years ago)
- Last Synced: 2025-03-10T19:42:53.699Z (about 1 year ago)
- Topics: builtin, debugging, python, python-devtools
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
===================
py-devtools-builtin
===================
**Add devtools.debug() to python builtins**
.. image:: https://img.shields.io/badge/Maintenance%20Intended-✖-red.svg?style=flat-square
:target: http://unmaintained.tech/
:alt: Maintenance - not intended
.. image:: https://img.shields.io/github/license/Cielquan/py-devtools-builtin.svg?style=flat-square&label=License
:target: https://github.com/Cielquan/py-devtools-builtin/blob/master/LICENSE.txt
:alt: License
.. image:: https://img.shields.io/pypi/v/py-devtools-builtin.svg?style=flat-square&logo=pypi&logoColor=FBE072
:target: https://pypi.org/project/py-devtools-builtin/
:alt: PyPI - Package latest release
.. image:: https://img.shields.io/pypi/pyversions/py-devtools-builtin.svg?style=flat-square&logo=python&logoColor=FBE072
:target: https://pypi.org/project/py-devtools-builtin/
:alt: PyPI - Supported Python Versions
.. image:: https://img.shields.io/pypi/implementation/py-devtools-builtin.svg?style=flat-square&logo=python&logoColor=FBE072
:target: https://pypi.org/project/py-devtools-builtin/
:alt: PyPI - Supported Implementations
`python-devtools `__ is a tool with
multiple debug functionality. As described in the
`docs `__ you can
add its toolset to the python builtins with a little trick. But instead of adding the
import to ``sitecustomize.py`` or ``usercustomize.py`` you can also write it to a
``*.py`` file in the ``site-packages`` directory and also add a ``*.pth`` file which
then imports the first file. This package does exactly that.
Simply install this package alongside ``devtools`` and you have its toolset available
without an explicit import::
$ pip install devtools py-devtools-builtin
If you do not have ``devtools`` installed, ``py-devtools-builtin`` will install it for you.