Metadata-Version: 2.1
Name: pydebugger
Version: 0.47
Summary: print objects with colored with more info
Home-page: https://github.com/cumulus13/pydebugger
Author: Hadi Cahyadi LD
Author-email: cumulus13@gmail.com
Maintainer: cumulus13 Team
Maintainer-email: cumulus13@gmail.com
License: BSD
Project-URL: Documentation, https://github.com/cumulus13/pydebugger
Project-URL: Code, https://github.com/cumulus13/pydebugger
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7
Description-Content-Type: text/markdown
License-File: LICENSE.rst

pydebugger
==================

print objects with colored with less info


Installing
-----------

Install and update using `pip`_:

.. code-block:: text

    $ pip install pydebugger

pydebugger supports Python 2 and newer, Python 3 and newer, and PyPy.

.. _pip: https://pip.pypa.io/en/stable/quickstart/


Example
----------------

What does it look like? Here is an example of a simple pydebugger program:

.. code-block:: python

    from pydebugger.debug import debug
    
    debug(variable1="data1", debug=True)


And what it looks like when run:

.. code-block:: text

    $ python hello.py 
    2019:04:18~13:20:19:286000 <module> -> variable1: data1 -> TYPE:<type 'str'> -> LEN:5 ->  [<FILE DIRECTORY>/test.py] [3] PID:10496

You can set OS Environment DEBUG=1 or DEBUG=True to avoid parameter "debug=True"

.. code-block:: python

    from pydebugger.debug import debug
    
    debug(variable1="data1")

or you just run "debug.py" to provider debug server with Client support OS Environment
	
	DEBUG_SERVER=1
	DEBUGGER_SERVER=0.0.0.0:50001


Support
--------

*   Python 2.7 +, Python 3.x
*   Windows, Linux

Links
------

*   License: `BSD <https://bitbucket.org/licface/pydebugger/src/default/LICENSE.rst>`_
*   Code: https://bitbucket.org/licface/pydebugger
*   Issue tracker: https://bitbucket.org/licface/pydebugger/issues
