python call for C/C++
Project description
python call for C/C++
vlm_utils is a library for tracing function calls with depth control and filtering.
Installation
pip install vlm_utils
Usage 1
from vlm_utils.module import tracer
def add_one(n):
return n+1
def add_two(n):
n = add_one(n)
n = add_one(n)
return n
@tracer
def main():
n = add_two(4)
main()
Usage 2
to use c++ lib function
from vlm_utils import lib_tools
Install Requires
python>=3.6.0
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
vlm_tool-0.1.0.tar.gz
(6.4 kB
view details)
File details
Details for the file vlm_tool-0.1.0.tar.gz
.
File metadata
- Download URL: vlm_tool-0.1.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 793cc957614d7aa613001e80d77c229b992d708da0cb2fa407565dcb601c214b |
|
MD5 | 8d5661af832c075342939a2f0aebd987 |
|
BLAKE2b-256 | e11f72126071481f509ce6664e74ef9b63abfd44bb50190c1d6d725057478a03 |