Metadata-Version: 2.1
Name: pdbg-bcit
Version: 0.0.1
Summary: A Python debugger for learner which print out all changes.
Home-page: https://github.com/y5bcit/pdbg.py
Author: 
Author-email: 
License: UNKNOWN
Description: # pdbg.py
        A Python debugger for learner which print out all changes.
        
        
        ### Usage
        
        ```python
        import pdbg
        
        pdbg.pdbg("/path/to/your/script")
        ```
        
        ### Options
        `pdbg`.**pdbg**(file, *format="\{varname} {{ \{prevvalue} => \{newvalue} }}"*, *seperator=", "*, *variable=[]*, *outputfile=""*)
        * [Required] `file`
          * Path to your script.
        * `format`
          * The format of each changed variables. Read [the Python doc](https://docs.python.org/3.7/library/string.html#format-string-syntax) for more about formatting.
        * `seperator`
          * Seperator used when multiple variables changed in one line.
        * `variable`
          * Filter the output by variables name.
        * `outputfile`
          * Redirect the output of pdbg to a file.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
