Skip to main content

No project description provided

Project description

debugtools — Easily print useful debugging information

This package provides a handful of functions you can use to print debugging information. There are basically two things that are useful about these functions. First, they’re only one or two letters each, so you can type them really quickly while debugging. Second, they append the name of the calling function to whatever you’re printing, so you can easily see where each message came from (and you don’t have to hunt down print statements once you finish debugging).

https://img.shields.io/pypi/v/debugtools.svg https://img.shields.io/pypi/pyversions/debugtools.svg https://img.shields.io/travis/kalekundert/debugtools.svg https://img.shields.io/coveralls/kalekundert/debugtools.svg

Installation

You can install debugtools using pip:

$ pip install debugtools

Usage

I typically the following import at the beginning of any file that I’m likely to debug:

from debugtools import p, pp, pv

The p() function behaves just like print(), except it appends the name of the calling function to whatever you’re printing. I often use it with no arguments, just to see if a function is being called or not.

The pp() function is to pprint.pprint() as p() is to print(). The pv() function calls pp() with the dictionary of variables in the calling scope, so it’s a good way to see what variables are defined in the function you’re debugging.

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

debugtools-0.2.0.tar.gz (8.5 kB view hashes)

Uploaded Source

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