Skip to main content

No project description provided

Project description

Afterthought

PyPI version

A debugpy alternative to pdb.post_mortem() that allows you to attach any debugger to your code after an exception has been raised.

By default it is setup and tested with vscode, but feel free to contribute to add support for other debuggers.

Installation

pip install afterthought

Usage

import afterthought


def bombs():
    a = []
    print(a[0])


if __name__ == "__main__":
    try:
        bombs()
    except Exception as e:
        afterthought.debug(e)

You can then connect using any tool that supports https://github.com/microsoft/debugpy

Function Decorators

You can also use the @afterthought.debug_on_exception decorator to automatically attach the debugger to any function that raises an exception.

import afterthought


@afterthought.debug_on_exception(IndexError)
def bombs():
    a = []
    print(a[0])


if __name__ == "__main__":
    bombs()

VSCode Configuration

Add the following configuration to your .vscode/launch.json file:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python Debugger: Remote Attach",
            "type": "debugpy",
            "request": "attach",
            "connect": {
                "host": "localhost",
                "port": 5678
            },
            "pathMappings": [
                {
                    "localRoot": "${workspaceFolder}",
                    "remoteRoot": "."
                }
            ]
        }
    ]
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

afterthought-0.5.0.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

afterthought-0.5.0-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page