coredumpy saves your crash site for post-mortem debugging
Project description
coredumpy
coredumpy saves your crash site for post-mortem debugging.
Highlights
- Easy to use
- Native support for unittest, pytest and run-time exceptions
- Portable and safe dump
- Utilizes pdb interface
Usage
dump
In most cases, you only need to hook coredumpy
to some triggers
For Exception
and unittest
, patch with a simple line
import coredumpy
# Create a dump in "./dumps" when there's an unhandled exception
coredumpy.patch_except(directory='./dumps')
# Create a dump in "./dumps" when there's a unittest failure/error
coredumpy.patch_unittest(directory='./dumps')
For pytest
, you can use coredumpy
as a plugin
# Create a dump in "./dumps" when there's a pytest failure/error
pytest --enable-coredumpy --coredumpy-dir ./dumps
Or you can dump the current frame stack manually
import coredumpy
# Without frame argument, top frame will be the caller of coredumpy.dump()
coredumpy.dump()
# Specify a specific frame as the top frame to dump
coredumpy.dump(frame)
# Specify a filename to save the dump, without it a unique name will be generated
coredumpy.dump(path='coredumpy.dump')
# You can use a function for path
coredumpy.dump(path=lambda: f"coredumpy_{time.time()}.dump")
# Specify a directory to keep the dump
coredumpy.dump(directory='./dumps')
# Specify the description of the dump for peek
coredumpy.dump(description="a random dump")
load
Load your dump with
coredumpy load <your_dump_file>
A pdb debugger will be brought up and of course not everything is supported.
peek
If you only need some very basic information of the dump (to figure out which dump
you actually need), you can use peek
command.
coredumpy peek <your_dump_directory>
coredumpy peek <your_dump_file1> <your_dump_file2>
About the data
Besides a couple of builtin types, coredumpy treats almost every object as an Python object with attributes, and that's what it records in the dump.
It does not use pickle
so you don't need to have the same run-time environment
when you load the dump. It's also safer to open an arbitrary dump without the
unsafe pickling process.
That being said, most of the objects will not be "restored" as they were when being dumped. You are in an observer mode where you can inspect attributes of all objects. None of the methods of the objects would work, nor would any dymanic features.
License
Copyright 2024 Tian Gao.
Distributed under the terms of the Apache 2.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file coredumpy-0.1.0.tar.gz
.
File metadata
- Download URL: coredumpy-0.1.0.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | deac263a34fe53c981153efe34f95d1611d9e5e59c74d70fca876263b621a7b7 |
|
MD5 | b783cdd013d06f184634ba73f23315f1 |
|
BLAKE2b-256 | 6062da8c6c6d6eb65cb06949001a47f84e89e62c07db1508b2ff289bc8cdc778 |
File details
Details for the file coredumpy-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: coredumpy-0.1.0-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 179784604c5ae7b68934c1caca133423c4c57c258ef0a40e2af15eb309f5013b |
|
MD5 | 822a66a0610caac95f1b9571b065d095 |
|
BLAKE2b-256 | 5eca211bc0632e2b692f8e049bf99f3ce21a499b09f129abd231d5ecfc93d274 |