Metadata-Version: 2.1
Name: breakword
Version: 0.1.1
Summary: Mixing breakpoints with print debugging.
Home-page: https://github.com/breuleux/breakword
Author: Olivier Breuleux
Author-email: breuleux@gmail.com
License: MIT
Description: 
        # breakword
        
        
        ## A description of the problem
        
        Let's say you have a bug somewhere in your code, but it doesn't raise an exception and you're not entirely sure where things went wrong, so you start peppering your code with print statements in order to get an idea of what's going on.
        
        At some point you see something wrong. You would like to investigate closer.
        
        However, it seems to happen on the 174th iteration of some loop, and you're not entirely sure how to make a breakpoint that triggers right where something went wrong, and not before. It's not clear what condition to write for the breakpoint. You don't know what to do except print more stuff.
        
        Now, what if you had two commands:
        
        * `breakword.log()`, a function to print some easily identifiable word.
        * `breakword.brk(word)`, a function to break after some word has been printed.
        
        Then you'd just run the script once, see that something happens after the word `potato`, and then you'd set a breakpoint to trigger after that word, and run the script again (hopefully your script is deterministic -- if it isn't, only God can help you).
        
        That's basically what this library does.
        
        
        ## Least-effort API
        
        The `PYTHONBREAKPOINT` environment variable tells Python what to call when it sees `breakpoint()`. You can set it to `breakword.logbrk` to get some magic.
        
        The `BREAKWORD` environment variable tells `breakword` which word to break on. If not set, no breakpoints will be entered unless explicitly specified in the Python code.
        
        Basically, do this:
        
        ```bash
        # Install the library
        pip install breakword
        # Run the script without entering a breakpoint
        env PYTHONBREAKPOINT=breakword.logbrk python yourscript.py
        # Run the script and break on the word "fish"
        env PYTHONBREAKPOINT=breakword.logbrk BREAKWORD=fish python yourscript.py
        ```
        
        Here's a screenshot to show what it looks like:
        
        ![demo](https://raw.githubusercontent.com/breuleux/breakword/master/media/demo.png)
        
        
        ## Marginally-more-effort API
        
        
        * `breakword.log(*things, **config)`: Print a word and optionally other things after it.
        
        * `breakword.brk(word=None, **config)`: Sets a breakpoint to trigger after `log` printed out the given word. If `word` is `None` or not given, the `BREAKWORD` environment variable is consulted. If the variable is not set, nothing will happen.
          * This is equivalent to `breakword.after(word).breakpoint()`.
        
        * `breakword.after(word=None, **config)`: Returns an object that evaluates to `True` right after `log` printed out the given word. As with `brk`, if `word` is `None` or not given, the `BREAKWORD` environment variable is consulted.
        
        * `breakword.word(**config)`: Returns the next word as a string. You can print it yourself, in which case it's basically like `log`, or you can store it in an object.
        
        * `breakword.logbrk(**config)`: Calls `log` and then `brk`.
        
        * `breakword.wordbrk(**config)`: Calls `word` and then `brk`. The word is returned.
        
        * `breakword.set_default_logger(logger)`: Set the logging function to use (defaults to `print`)
        
        ![demo](https://raw.githubusercontent.com/breuleux/breakword/master/media/demo2.png)
        
        
        ### Configuration
        
        `log`, `word`, `after` and `brk` all take keyword arguments:
        
        * `group`: A string that represents a "group" for the words. Each group is independent: `log(group="abc")` and `log(group="xyz")` will not interfere with each other, so you can add more `log` statements in your code without changing the words printed out by the existing logs.
          * You can also do something like: `if after("fish"): log(group="xyz")`. That statement will log extra words, but only after "fish" in the main sequence.
          * Different groups will (probably) have different colors, to help telling them apart.
        
        * `logger` The logger to use. Defaults to the default logger, which is `print`.
        
Keywords: debug breakpoint print
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Debuggers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Provides-Extra: test
Provides-Extra: dev
