One decorator for lazy debugging. Inserts print statements directly into your AST.
Project description
constable allows you to monitor the state of specified variables at each assignment operation, providing a step-by-step view of variable changes!
View the Github repository and the official docs.
How does it work?
The constable.trace decorator uses Python’s Abstract Syntax Tree (AST) in much the same way we add print`(s) to debug states. During runtime, it prepares and inserts `print statements into the function’s AST after every assignment operation (ast.Assign, ast.AugAssign and ast.AnnAssign), and then executes the modified code in a separate namespace with exec.
$ pip install constable
Tested for python 3.8 and above.
Usage :
Tracking variables in a function
import constable
@constable.trace('a', 'b')
def example(a, b):
a = a + b
c = a
a = "Experimenting with the AST"
b = c + b
a = c + b
return a
example(5, 6)
Output :
constable: example: line 5 a = a + b a = 11 type(a) = <class 'int'> constable: example: line 7 a = "Experimenting with the AST" a = Experimenting with the AST type(a) = <class 'str'> constable: example: line 8 b = c + b b = 17 type(b) = <class 'int'> constable: example: line 9 a = c + b a = 28 type(a) = <class 'int'> constable: example: line 3 to 10 args: (5, 6) kwargs: {} returned: 28 execution time: 0.00018480 seconds
Monitor functions
import constable
@constable.trace()
def add(a, b):
return a + b
add(5, 6)
Output :
constable: add: line 3 to 5 args: (5, 6) kwargs: {} returned: 11 execution time: 0.00004312 seconds
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 constable-0.3.1.tar.gz
.
File metadata
- Download URL: constable-0.3.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26e637b00145212916e1df0cdbb5d9a300959fdfa808c10c1fb98b712e4088a5 |
|
MD5 | fc9a5fd6c58b57c57dd3d9b5f71e1ef5 |
|
BLAKE2b-256 | f70a4da4d32b287caa1891768925ec4aedfe6e2dc56da6826e7f1bc424074376 |
Provenance
File details
Details for the file constable-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: constable-0.3.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 179dc03535ec03af770f9e660d639ad32c6e7f2bf6cd1738e332cdf2c6d1f531 |
|
MD5 | 719b2a8dd39f2376efbf797486ea9b0e |
|
BLAKE2b-256 | e625b7e5e68fec9fe68d6ea2b80dedded3a2e53a8f1dd1fb8fbb6faa22d6609a |